Using a string variable inside a graph builder script
Early in my JMP script, I define a string variable like this: Trim0 = "trim_lvl_a";
There is a column in my data table by the name of trim_lvl_a. Later in the script, I create a Graph Builder script like this: dt << New Script(
"maps",
Graph Builder(
Size( 550, 647 ),
Graph Spacing( 5 ),
Variables(
X( :X ),
Y( :Y ),
Group Y( :Name( "Tambient (degC)" ) ),
Wrap( :LotWafer ),
Col
...