Hi @txnelson, thank you so much to answer my previous question. Since I have more than 30 DoE models, that's why I am trying to automate my data analysis and copy & paste graphs. Could you please tell how to adjust the Frame Size for example "Residual Normal Quantile Plot" by modifying the code below like " {"Response XXXX", "Residual Normal Quantile Plot"},
"Bivar Resid Quantile Plot",
FrameBox,
{Frame Size( 271, 213 )}"?
I can manually adjust the frame size by editing model fit, but it's very time consuming
Here is a piece of code that will open the Summary of Fit if it isn't open.
ob = rbiv << XPath( "//OutlineBox[ contains( text(), 'Response' ) ]" );
Print( ob );
For( i = 1, i <= N Items( ob ), i++,
name = ob[i] << get title;
Print( name );
obj = ob[i] << get scriptable object;
try( obj<<Summary of Fit(1));
ob[i] << Close( 1 );
ob[i]["Summary of Fit"] << Close( 0 );
ob[i]["Parameter Estimates"] << Close( 0 );
);
Additionally, it is a simple matter to open the Summary of Fit sections for all models, with one click. If you hold down the CNTL key and click on the Summary of Fit selection, and all models will have the Summary of Fit added to the analysis.