Accessing summary of fit when By argument is used
Hi, I make a summary of fit table by using the script: Names Default To Here( 1 );
dt = Data Table("Big Class Data");
biv = dt << Bivariate(
Y( :weight ),
X( :height ),
Fit Line(),
//By(:sex),
);
rpt = biv << Report;
rpt["Bivariate Fit of weight By height?", "Linear Fit", "Summary of Fit",Table Box( 1 )] << Make Combined Data Table;
However, I don't understand why the same...