How do I script DOE Evaluate Design over a variable array of X Factors?
I have a script where after opening a data table, the user gets to select which columns are the X regressors/factors:
Panel Box( "Column Selection",
Lineup Box( N Col( 2 ),
Text Box( "Select Controlled Conditions" ),
cont_cond list = Col List Box( All )
)
)
The list cont_cond has worked very well for me in the rest of my script (creating Exploratory Data Analysis and savi...