cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
Steve_Kim
Level III

[Script] Get rid of Moving Range chart in control chart builder


Hello~ all~

Is there a way to get rid of Moving Range chart

in the 'Control chart builder' platform

by using JMP script? : )

8761_I chart.jpg

Here is the script for the 'control chart builder' sample.

dt = Open( "$SAMPLE_DATA/Quality Control/Coating.jmp" );

dt << Control Chart Builder(
Show Control Panel( 0 ),
Variables( Subgroup( :Pin ), Y( :Weight ) ),
Chart( Position( 1 ), Limits( Spec Limits( 1 ) ), Warnings( Test 1( 1 ) ) ),
Chart( Position( 2 ) ),
SendToReport( Dispatch( {}, "graph title", TextEditBox, {Set Text( "Individual chart of Weight" )} ) )
);

12 REPLIES 12
Paul_J
Level III

Re: [Script] Get rid of Moving Range chart in control chart builder

Thanks, but it doen't work for me.  Must be something specific about 12.1.0 (not Pro).  Good to know at least this will be fixed in a later version, though I hope it will be fixed in the non-pro version.

 

 

 

 

txnelson
Super User

Re: [Script] Get rid of Moving Range chart in control chart builder

You should be able to go to the JMP update site and for free download 12.2

Jim
Paul_J
Level III

Re: [Script] Get rid of Moving Range chart in control chart builder

The script I have creates the chart then saves it to a journal.  Is there any way to pause the script so the user can manually remove the Range chart, then continue the script which saves the chart to a journal (and does other stuff)?

 

Thanks.