Hi All,
Does anyone know why the following script failed to turn off the box plot and cell mean? I copy this script after I manually created the variability plot. However, if I run the script, the box plot and cell mean are not turn off. I am currently using JMP17.
The only workaround I found is by using either of the two options below :
1. << (Variability Analysis[1] << Show Box Plots( 0 ))
2. << Variability Analysis << Show Box Plots( 0 )
In option 1, what does the [1] in Variability Analysis mean? It seems like I can omit without any issue. I found the solution from JMP -> Scripting Index.
dt = Open("$SAMPLE_DATA/Big Class.jmp");
Variability Chart(
Y( :height ),
Model( "Main Effect" ),
X( :sex ),
Sigma Multiplier( 6 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Variability Analysis(
:height,
Show Range Bars( 0 ),
Show Cell Means( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 ),
Show Box Plots( 0 )
)
);