cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Celine1
Level II

set control limits in Control Chart

Greetings,
I'm using JMP 17, I tried to set control limit for chart A (x-bar) and chart B (R)
edt is the data table.
below is my script:

graph = edt << Control Chart Builder(
Size( 1123, 586 ),
Show Alarm Report( 1 ),
Show Control Panel( 0 ),
K Sigma( 2.5 ),
Variables( Subgroup( :CaptureDateTime ), Y( :CaptureValue ) ),
Chart(
Position( 1 ),
Limits,
Set Control Limits( {LCL( 49.5 ), UCL( 50.5 ), Avg( 50 )} ),
Warnings( Test 1( 1 ), Test 3( 1 ) )

),
Chart(
Position( 2 ),
Set Control Limits( {LCL( 0 ), UCL( 0.8 )} ),
Warnings( Test Beyond Limits( 1 ) )
))


but once I run the script, it does not set the control limits. Anyone knows how to set control limit in script?
thank in advanced

1 ACCEPTED SOLUTION

Accepted Solutions
bbenny7
Level III

Re: set control limits in Control Chart

The problem could be that you are trying to set the limits characteristics without specifying them.

Try to set them

...

Position( 1 ),
Limits (Sigma ("......" ) ),
Set Control Limits( {LCL( 49.5 ), UCL( 50.5 ), Avg( 50 )} ),

...

or try to delete the line Limits, .

I hope this helps.

 

 

View solution in original post

1 REPLY 1
bbenny7
Level III

Re: set control limits in Control Chart

The problem could be that you are trying to set the limits characteristics without specifying them.

Try to set them

...

Position( 1 ),
Limits (Sigma ("......" ) ),
Set Control Limits( {LCL( 49.5 ), UCL( 50.5 ), Avg( 50 )} ),

...

or try to delete the line Limits, .

I hope this helps.

 

 

Recommended Articles