Hi,
I am a new user to JMP and JSL scripting. I am trying to script a guage R&R and would like to include the tolerance interval in the script.
I already have a column (Named "Tolerance Interval") with tolerance intervals for each of my parameters. (Note that I am splitting the analysis by Parameter and each Parameter has a different tolerance interval). The script I have tried is below. It will create the variability chart however I still need to input each individual tolerance interval (which there are many), via the pop up specification screen. Any tips on how I can script this to avoid manual input would be greatly appreciated
dt = Current Data Table();
dt << vc = Variability Chart(
SendToByGroup( Bygroup Default ),
Y( :VALUE ),
X( :Operator, :CAVITY NO ),
By( :PARAMETER ID ),
Model( "Nested" ),
Historical Sigma( 0 ),
Name( "Guage R&R" )(6, :Tolerance Interval, 0, 0),
Name( "Gauge R&R Report" )(1);
);