cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
RyMcQeN
Level III

How to use JSL to Get Limits in IR Control Chart

Hello,

 

Assuming I have a limits table saved with multiple parameter columns like shown below. Is there a way to read in this file and apply the limits to an IR chart for the matching parameters using JSL?

 

Capture.PNG

 

 

According to the following post there is no way to invoke the "Get Limits" function from the Control Chart dialog using JSL. In this case it was suggested to hard code the limits. 

How-to-Get-Limits-for-Capability-on-IR-Control-Chart

 

I am thinking I need to read the limits file in, capture the Sigma, Avg, LCL, and UCL as variables then pass them to the Chart Col for each parameter.  If this is the only way to do it, what would be the most efficient way to approach it?

 

See below example of the code for a single control chart parameter with phase level and limits hard coded:

 

Control Chart(
	Sample Label( :WEEK ),
	Phase( :YEAR ),
	Group Size( 1 ),
	KSigma( 3 ),
	Chart Col(
		:P1,
		Individual Measurement(
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Phase Level(
				"2019",
				Sigma( 0.0106958422036977 ),
				Avg( 5.59766666666667 ),
				LCL( 5.56557914005557 ),
				UCL( 5.62975419327776 )
			)
		)
	)
);

 

Thank you in advance.

 

Ry

 

 

 

10 REPLIES 10
AlexS
Level III

Re: How to use JSL to Get Limits in IR Control Chart

Excellent! That put me on the right track.

Thank you!

Alex is the name, Power BI/ SQL /JMP is my game