General script for fit model with saving student residuals for different variables
I am trying to create a script that I can use every time with minimum work to do ANOVA and Chi-sq directly. I started the script: Names Default To Here(1);
dt=Current Data Table();
dlg = Column Dialog(
name = ColList( "Parameters", Min Col(1) ),
subject = ColList( "Treatment", Min Col(1), MaxCol(1) ),
Reffect = ColList( "Random", Min Col(0), MaxCol(2) )
);
...