Dear all,
I wrote a script which results in a lot of graphs and reports. I would like to incorporate in my script a way to export some of the graphs (made with Graph Builder) to EPS, JPEG, ... format. I found a way how to do so in the scripting guide (see below) but would like to get rid of the display box on top of teh report --> in my case that is "Graph Builder", in the case of the scripting guide example it is "Bivariate Fit of weight By height". I do not want to change this text to anything else, but get rid of it. Any tips?
Thanks!!
As taken from the scripting guide:
Names Default To Here( 1 );
//This message applies to all display box objects
Open( "Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv << report;
rbiv << Save Picture( "example.png", "png" );