How to auto create Taguchi Array using JSL?
I want to do Taguchi L9/L18 iteratively based on different factor value & response goal.And I've created simple jmp script but no idea about controlling inner array pop up window.Is there any solution to automate the Taguchi process using JSL? Thanks.Names Default To Here( 1 );
//Load Factor
dt = Open( "Factor file" );
d = dt << DOE(
Taguchi Arrays,
Load Factors
);
//Click Continue
report(d)[but
...