I am designing multiple DOE using risks assesments done in Excel. I wrote a script to organize all the variables into a neat table and converted the properties to that of a factors table (credit to a previous post (Saving a data table as a factors table
dt3 = Current Data Table();
nomdata = dt3 << get column names( nominal );
condata = dt3 << get column names( continuous );
For( i = 1, i <= N Items( nomdata ), i++,
Column( dt3, Char( nomdata[i] ) ) << Set Property("Design Role", Design Role( Categorical ), Factor Changes( Easy))
);
For( i = 1, i <= N Items( condata ), i++,
Column( dt3, Char( condata[i] ) ) << Set Property("Design Role", Design Role( Continuous ), Factor Changes( Easy))
);
Now I would like load this factot table into the Custom design DOE, is there a way to do this using JSL or is using the graphic interface the only way?