Hi All,
I am trying to output the Rsquare value from a fit model, the code is as below,
(I take Algae Mitscherlich.jmp for practice, but I believe the Rsquare doean't really mean anything. Sorry for that)
Eventually the code doesn't ouput a combined table, no matter what number I input into [outline box(4)][2].
Can someone indicate me what is wrong here?
Thank you very much for any reply.
dt_comb=Open( "$SAMPLE_DATA/Nonlinear Examples/Algae Mitscherlich.jmp" );
dt_comb<<Fit Model(
Y( :Algae density ),
Effects( :Mitscherlich, :equal alphas, :equal betas ),
Personality( "Standard Least Squares" ),
Emphasis( "Effect Screening" ),
Run()
);
dt_model = dt_comb << report;
dt_modelR = dt_model[outline box(4)][2] << make combined data table;