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 script doesn't work if I apply By (:sex) argument?
I get the following massage:
Can someone explain what I do wrong and how to fix it?
Thank you in advance!