Hi Thierry -
I am using Jmp 12.2.0 on Windows. Wondering if there is a difference due to Jmp version.
I get empty "Final" journal with previous code.
Including modified code below. Expecting two plots in "Final". Only get one
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
j1 = New Window( "Journal_1",
<<journal,
dt << bivariate( x( :weight ), y( :height ) )
);
Current Journal() << save journal( "C:\logs\Existing.jrn" );
Current Journal() << close window();
//Open closed journal
nw_existing = Open( "C:\logs\Existing.jrn" );
//Create New journal
nw2 = New Window( "Journal_2", <<journal, dt << oneway( x( :sex ), y( :height ) ) );
Current Journal() << save journal( "C:\logs\New.jrn" );
//create new window
nw = New Window( "Final" );
//add older jrn first, followed by recent one
nw << append( nw_existing );
//nw << append( Report(nw_existing)); // does not make any difference
nw << append( nw2 );
I could not figure out how to incorporate your suggestion about analysis report xxx << journal. Appreciate if you could show the usage in this code. Thank you.