cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Interactive Capability Plot - display Expected % Non-conformance (instead of, or as well as Expected PPM)

For the interactive Capability Plot, it'd be great to show Expected % Out of Spec also. The Expected PPM may be useful for some, but for most people this is a value that needs re-calculation back to a real world metric, i.e. percentage.

 

4 Comments
jthi
Super User

This could be expanded for all platforms which are missing this value.

 

I came across this topic Interactive Capability Plot - possible to convert PPM to % easily? which most likely did start this idea.

 

Definitely not the most elegant option but here is one way to script it:

 

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
obj = Process Capability(Process Variables(:PNP1), Individual Detail Reports(1));
obj << {:PNP1 << Process Capability Analysis(Interactive Capability Plot(1))};

tb = (((Report(obj)[OutlineBox("Interactive Capability Plot")][OutlineBox("New")][OutlineBox("Expected PPM")])) << child);
ncb = Number Col Box("Observed %", (tb[2] << get as matrix) / 1e6);
ncb << Set Format(Format("Percent", 7, 4));
Insert Into(tb, ncb);

// function for slider box
Eval(EvalExpr(
	(((((Report(obj)[OutlineBox("Interactive Capability Plot")][OutlineBox("New")]) << child) << child)<< child)[2]) << Set Function(function({this},
		Expr(ncb) << Set Values((Expr(tb[2]) << get as matrix) / 1e6);
	));
));

// function for number edit box
Eval(EvalExpr(
	(((((Report(obj)[OutlineBox("Interactive Capability Plot")][OutlineBox("New")]) << child) << child)<< child)[3]) << Set Function(function({this},
		Expr(ncb) << Set Values((Expr(tb[2]) << get as matrix) / 1e6);
	));
));

// tb[2] << Visibility("Collapse");

Reference building can be made cleaner if needed.

 

mia_stephens
Staff
Status changed to: Yes, Stay Tuned!

In the next release, Expected % and Expected Count have been added to the Interactive Capability Plot report, and the outline has been renamed "Nonconformance". The Expected Count is hidden by default.

Status changed to: Delivered
 
Status changed to: Delivered