Consider the following example script (a simplified version of my actual problem)
Names Default To Here(1);
dt = open("$SAMPLE_DATA/Big Class.jmp");
//Scatt3D = dt << Scatterplot 3D( Y( :age, :height ), X Axis( :age ), Y Axis( :height ) );
include ("plotScatterPlot.jsl");
Window ("Big Class - Scatterplot 3D of age, height")<< journal;
//Scatt3D << journal
where plotScatterPlot.jsl contains
Scatt3D = dt << Scatterplot 3D( Y( :age, :height ), X Axis( :age ), Y Axis( :height ) );
which generates a scatter plot in 3D with the window name
"Big Class - Scatterplot 3D of age, height"
I can generate a journal using
Scatt3D << journal
But I need to generate a journal using the window name
Window ("Big Class - Scatterplot 3D of age, height")<< journal;
which is not working. Could I please get some help in getting this to work?
(I am on JMP13).
When it's too good to be true, it's neither