When I generate a variability chart in JMP17.1 I get the question if I want to add Group means, when I enter ok and save the script it will contain a section to include the group means. Yet when I re-run that script it shows the same prompt again asking if I want to see the group means. Can anybody reproduce this problem? I did not have this problem in JMP16.
Example script:
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Variability Chart(
Y( :height ),
Model( "Main Effect" ),
X( :name, :age, :sex ),
Sigma Multiplier( 5.15 ),
Variability Analysis(
:height,
Connect Cell Means( 1 ),
Show Group Means( name, age ),
Show Grand Mean( 1 ),
Std Dev Chart( 0 ),
Mean of Std Dev( 0 ),
Group Means of Std Dev( 0 ),
AIAG Labels( 0 ),
Mean Plots( 1 ),
Std Dev Plots( 0 )
)
);
Pops up this window:
Which it shouldn't as it is already coded in the script.
I'm looking for a scriptable way to get the group means to show without it prompting the user.