Hello,
I am running a loop that subsets a data table and plots a variability chart from the subset table. Script is something like below:
//lot list is a string list...
lot_count = Length( lot_list);
For( i= 1, i <= lot_count, jj++,
subset a data table from main table depending on some criteria
do gymnastics with the subset table and plot a variablity chart
); // for loop closed. At the end I will have a number of variablity charts in separate windows
What I wanted to do is to merge all the plots in same window...
My approach is to use something like this after the loop is finished:
New Window( "Combined graphs", lineup box(ncol(2), v1, v2, v3,v4););
But I am having trouble in:
1) Assigning a variable v1, v2, v3, ... to a variablity chart based on the interation number within the loop
2) Provide dynamic list to New Window(), where each variable of list {v1, v2, v3, ...} is refering to a variablity chart.
Thanks in advance for any help! A different approach would be acceptable!