Thanks for the solution, for some reason it doesn't work in my script.
Can you help to modify based on my script below?
I am ploting over 200 graph which can only be done with graph builder.
So I hope to add the graph to a same window graph, then close the graph builder window after ploting.
Otherwise, I end up open 200 windows.
WW1 = New Window( "graph1", Graph Builder() );
Window( "graph1" ) << Close Window();
WW2 = New Window( "graph2", Graph Builder() );
Window( "graph2" ) << Close Window();
WW3 = New Window( "graph3", Graph Builder() );
Window( "graph3" ) << Close Window();
@txnelson wrote:
Here are two ways to have multiple outputs in one window. There are other ways too
names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
nw=new window("Example 1",
bivariate(x(:height), y(:weight)),
oneway(x(:sex),y(:weight))
);
nw2=new window("Example 2");
nw2<<append(bivariate(x(:height), y(:weight)));
nw2<<append(oneway(x(:sex),y(:weight)));