Saving multiple graphs in JSL
Hi, I'm running this script where dataCols are numeric columns.OWA = Data Table ("Filtered_raw") << Oneway(
Y(eval( dataCols)),
X( " WhichTest"),
Each Pair( 0 ),
Means( 0 ),
Plot Actual by Quantile( 0 ),
Plot Quantile by Actual( 1 ),
Mean Diamonds( 1 )
);
This creates Oneway Analysis and Normal Quantile plots of my numeric columns. Now I'm trying to save these plots with this script...