Extracting fit values from bivariate report
I have a data table from which I perform a Bivariate analysis with a linear fit. There are many different linear plots divided into groups of Wafer, BitSize, and DieSite according to the use of By as below: WbPlots = dt << Bivariate(
Y(Column(Weibull_y_name)),
X(Column(Weibull_x_name)),
Fit Line( {Line Color( {213, 72, 87} )} ),
By(:Wafer,:BitSize,:DieSite)
); Next, I want to make combined data ...