How to rename the default graph builder script in a data table ?
Below code generates a script for graph builder and is saved under the data table.
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Graph Builder(
Variables( X( :Sex ), Y( :Height ), Group X( :Age ) ),
Elements( Box Plot( X, Y ) )
);
obj << Save Script to Data Table;The names of the graph builder objects are using the default naming pattern for this platform. How do I rename them to my choice? (I...