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, Y ) )
);
obj << Make into Data Table(invisible);
I tried also
dt = obj << Make into data table <<invisible;
dt = obj << Make into data table;dt <<invisible ;
dt = obj << Make into data table(visibility ("invisible")) ;
and some other combinations but nothing is hiding the data table and I cannot figure out what is going on.
I'm working on JMP 14.1.0 (64 bits)
Thanks a lot for any help !
regards