Make invisible data table out of a graph builder
Hello , Inside a loop, I make datatables out of graph builders . Point is that I would like those data tables to be invisible and I cannot figure out how to do it. As an illustration, here is the exemple from the scripting help : Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Graph Builder(
Variables( X( :Sex ), Y( :Height ), Group X( :Age ) ),
Elements( Box Plot( X
...