How can use variables instead of column names in graphing JSL?
For example, the following script, I want to use
aa="height";
bb="weight";
In JSL use aa, bb to code the relevant column names.Thanks!dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
aa = "height";
bb = "weight";
p1 = dt << Graph Builder(
Size( 765, 453 ),
Show Control Panel( 0 ),
Show Legend( 0 ),
Legend Position( "Bottom" ),
Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( aa ), Y( bb
...