Hi @Neo ,
I think going with @jthi 's suggestion to do a Process Screening might be a good way to go about getting a parameter fail pareto plot. From there, you can do a <<Make Into Data Table from the Process Screening Report, and as an example, you can do a Pareto Plot of the Out of Spec Count -- or whichever column is the one that is most interest to you.
The script below is pretty much just a direct save script to Scripting Window action at each step. A few extra things have been thrown in there, but this is essentially what you're interested in, at least as far as I understand your request.
Names Default to Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
ps = dt<<Process Screening(
Process Variables( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3 ),
Control Chart Type( "Indiv and MR" )
);
rpt = New Window( "Semiconductor Capability - Process Screening",
Data Table( "Semiconductor Capability" ) <<
Process Screening(
Process Variables( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3 ),
Control Chart Type( "Indiv and MR" )
)
);
ps << Close Window;
pdt = rpt["Process Screening", Table Box( 1 )] << Make Into Data Table;
rpt << Close Window;
pp = pdt<<Pareto Plot( Cause( :Column ), Freq( :Out of Spec Count ) );
Hope this helps!,
DS