キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
言語を選択 翻訳バーを非表示
Isabel26
Level III

CPK for non normal data 'Clements Percentile PCI method'

Hello! I just learned 'Clements Percentile PCI method' for CPK non normal data. I don't think JMP support it, right? Any thoughts and ideas are welcomed! Thanks.

 

Best,

Isabel

1件の返信1

Re: CPK for non normal data 'Clements Percentile PCI method'

JMP can compute PPK metric for non-normal distribution.  You do this by specifying the distribution type you wish to use when launching the process capability platform or you can do it from within the process capability report by selecting "Compare Distributions" from the Capability red triangle.  The example below shows a capability metric computed using a Weibull distribution.

dt = Open( "$SAMPLE_DATA/Tablet Measurements.jmp" );

dt << Process Capability(
	Process Variables( :Purity & Dist( Weibull ) ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 1 ),
	Capability Index Plot( 1 ),
	SendToReport(
		Dispatch(
			{"Individual Detail Reports", "Purity(Weibull) Capability", "Histogram"},
			"Process Capability Analysis Histogram",
			FrameBox,
			{Frame Size( 320, 20 )}
		)
	)
);

 

おすすめの記事