cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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