Is there an easy way to script the Fit Model Macros?
I can't believe I've never asked this before, but does anyone know if I can give a script just what macro to run on what I have selected?
Like say I want to do response surface on "Age" and "weight"
Names default to here( 1 );
dt = open("$SAMPLE_DATA\Big Class.jmp");
dt << Clear Column Selection();
dt << Select Columns({"weight", "age"});
fm = dt << Fit Model(Y(:height),
// do something
...
