Using a list of column names in a varability chart
When creating multiple variability graphs, JMP generates a script example similar to the code below that includes the multiple Y Response columns as a comma separated list.
Variability Chart(
Y( :Col1, :Col2 ),
Model( "Main Effect" ),
X( :unit )
);
If I have a list of columns that I would like to generate graphs for:
ListofColumnNames = dt << Get Column Names();
ListofColumnNames = {Col1, Col
...