cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar

Process Screening - would like an option to not have it sort by stability index

What inspired this wish list request? 

The process screening has Grouping columns as an option and the "original" order for the table is based on those (and the order of the Columns in the table).  It's not currently easy to get the table back to this ordering via JSL (this is the ordering you will get if you toggle click to sort to "off" position but the order you are presented the table in is always unavoidably based on stability index).  It's possible to hide the stability index column with stability index(0) but not to avoid the ordering.

 

ex:

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );

//give a distinctive order to something in the grouping
dt:Site << Set Property( "Value Order", {CustomOrder({3, 1, 2, 4, 5}), CommonOrder(0)} );


//as advertised that sorts the rows of the table by stability index

//even if we don't include stability index
obj = dt << Process Screening( Grouping( :Site, :lot_id ), Process Variables( Eval( 5 :: 132 ) ) , stabilityindex(0));

 

//try toggling the sorting with click see and see that there is a "special" order based on the groupings and order of process columns in the table

//it honors that value order

//but hard to get this ordering to appear via JSL

 

 

 

 

 

What is the improvement you would like to see? 

 

 

Why is this idea important?