How to combine multiple plots in 1 tab using JSL
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
...