Hi Wendy,
I applied your solution and it is perfect...
I face another different problem : I want to generate several graphs on one window, so I try to pass the column name as a variable, but it does not work.
Attached is a Data table that serves as an example.
The script in it generates (as a trial) 3 identical graphs embedded in a window. they show the data of the culumn "length [cm]" that I passed as such.
But now, I create a list of the columns I want to plot: Param = {"thickness [um]", "length [cm]", "Time [sec]"};
I tried to generate a graph for each by using :
gr = Variability Chart(
Y( :Name( Param[i] ) ),
X( :Operator, :Wafer ), ...
);
but is not accepted by the compiler...
Any idea to solve it ?
Thanks a lot.