Hi,
I have 10 different DOE tables and each has the DOE model script. I want to script to use the existing model script in each table and run it with different response column (or replacing the :Y in the model script).
say one of the DOE table is dt and there are added 2 columns into the same table which will be the new responses (Y) for study: col1 and col2. These responses are not in the model script.
How can I modify the below section in script so it will take the input column and run the existing model script to it? is it possible? or I will have to manually go into each DOE table and modify the "Model" script with the 2 responses from col1 and col2?
model = dt << Get Property("Model");
Insert Into(model,Expr(Run));
Eval(model);