How to Subset Pareto Cause in JMP using JSL

A

Aileen84

Hi,
I'm not sure if this is the right forum for my question.
I hope someone can help me out with this:
In JMP Pareto Chart, I want to subset the first 3 Causes using a JMP Scripting Language (JSL). So that everytime I run a Pareto it automatically makes another table containing the top 3 items.
Then i can do further 2nd level analysis.

Thanks in advance for the help.
 

Stijloor

Leader
Super Moderator
Re: How to Subset Pareto Cause in JMP using JSL?

A Quick Bump!

Can someone help Aileen?

Thank you very much!!

Stijloor.
 
A

Aileen84

Re: How to Subset Pareto Cause in JMP using JSL?

Thanks Stijloor!
I hope someone can provide help. I'm stuck with this portion in my script for days now...:(
 

reynald

Quite Involved in Discussions
Re: How to Subset Pareto Cause in JMP using JSL?

This might have been a year late but let me post none the less for future reference:

Template:
dt = current data table();
dt<<Select Where(specify condition, which value in a column to select);
selected_only=dt<<Subset(Columns(list tools you want to output),output table name("New table name"));


Sample:
dt = current data table();
dt<<Select Where(:CAUSE=="DEF#307");
selected_only=dt<<Subset(Columns(:TOOL,:CLASS),output table name("SUBSET"));
 

Marc

Fully vaccinated are you?
Leader
Re: How to Subset Pareto Cause in JMP using JSL?

Thanks, Reynald! Your reply is appreciated!
 
Top Bottom