Hi,
I wrote below script (simple fit least square but the effects are categorical) and it worked fine on my system (JMP 15.1). When my college try this script on his computer (JMP 15.0).
When he ran this script, it showed pop up menu asking for control level - see picture.
I manually plotted the least square on his computer and it showed the same message - asking for control level.
If I clicked cancel, then the fit least square showed up.
How do we turn off this control level thing ?
for (i=1, i <= n items (temp_list), i++,
vlb1 << append(
fit = Fit Model(
Y( temp_list[i] ),
by(:class),
Effects( :Name( "~DEVICE TYPE" ), :Name( "~STAGE" ) ),
Personality( "Standard Least Squares" ),
Emphasis( "Minimal Report" ),
Run(
Profiler(
1,
Confidence Intervals( 1 )
)
)
);
fit << prediction formula;
)
);