How to send the second chart in a distribution by group to a journal using JSL?
Hi, I am back with another issue I am having with an example script. Names Default To Here(1);
dt = open("$SAMPLE_DATA/Big Class.jmp"); //loads data table
include ("plotScatterPlot.jsl"); // plots a 3D scatter plot
Window ("Big Class - Scatterplot 3D of age, height")[outlinebox(1)]<< journal;
include ("distributionBySex.jsl");
Window ("Big Class - Distribution")[outlinebox(1)]<< journal;
where wh...