|
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"));
__________________
"Unless the CEO builds the Company, the Engineers labor in vain"
|