Hi, I have two different plots and I would like to combine them in one tab on my journal.
dt=open("$SAMPLE_DATA/big class.jmp");
// Plot 1
biv = dt << Bivariate( invisible, Y( :height ), X( :weight ), By( :sex ) );
// Create the window, with the first tab
nw=New Window("Tabs", text box("here are the tabs"), tb = Tab Box((report(biv[1])[outlinebox(1)])<<get title ,report(biv[1])));
//Plot 2
biv2 = bivariate( x( :height ), y( :weight ), invisible );
tb << Append( "Plot 2", biv2 << Report); //what I currently do
My question is, how can I combine these two different plot in 1 tab? I am using JMP 15