Sorry that I did not explain myself properly, Jim. My apologies for this.
Below is an example of the code that I was trying to modify/ initially work on.
I am looking into ploting the variability charts automatically with the input data. And then output them into like ppt or so.
But somehow nothing seems to be workng well witt the script.
/* Open a sample data table */
dt = Open( "12.jmp" );
/* Obtain a list of numeric/continuous column names as strings */
colList = dt << Get Column Names( Continuous, String );
/* Loop through the list to generate the desired graph
and save the report as a JPEG file */
For( i = 2, i <= Nitems( colList ), i++,
obj = dt << Variability Chart(
Y( ::Column( dt, colList[i] ) ),
X( :WAFER ),
Max Iter( 100 ),
Conv Limit( 0.00000001 ),
Number Integration Abscissas( 128 ),
Number Function Evals( 65536 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Connect Cell Means( 1 ),
Std Dev Chart( 1 ),
Automatic Recalc( 1 )
);
);
obj << Save Picture("C:\Users\Ann Ann" || colList[i] ||".jpg", JPEG );
/* Close table and all invisible reports */
Close( dt, No Save );