Trying to JSL script and get the maximum desirability from RSM design
Hello!
New user of JMP. I'm using the student trial version, and I want to use the JSL script to use RSM design. Here's how far I got...
Names Default To Here( 1 );
// Here are the factors and the ranges
factors = {
{"X1", 0, 1, "Continuous"},
{"X2", 0, 1, "Continuous"},
{"X3", 0, 1, "Continuous"}
};
rsm = DOE( Response Surface Design );
// Add a response
rsm << AddResponse( Minimize, "Y"...