There are several things you can do to get the results you want.
1. Close(Collapse) the Anova Results. Using the gray triangle to the left of any of the various sections within the output, you can collapse the details of the section, down to just the Title box itself. If you use the JMP Standard feature of holding down the CNTL key as you click to collapse the Anova segment for one of the parameters, all of the same Anova sections for all of the parameters will be collapsed.
2. Click on the edge of a chart and reduce it in size. Once again, if you hold down the CNTL key as you click on the edge of a graph and change the frame size of the graph, all of the graphs will be changed at the same time.
3. If you click on the red triangle for the overall Title for the display, you can select "Arange in Rows". This will allow you to create a matrix of the output. If you have closed all sections except the graphs for each of the parameters, then you will get a matrix of the graphs.
4. A script can be written to modify the displayed output in just about any form you want. Individual components of the output can be deleted, moved, or annotated. The various objects can be placed into new windows and positioned in whatever form you desire.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
Fit Group(
Oneway(
Y( :NPN1 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :PNP1 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :PNP2 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :NPN2 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :PNP3 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :IVP1 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :PNP4 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :NPN3 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :IVP2 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :NPN4 ),
X( :SITE ),
Means( 1 ),
Mean Diamonds( 1 ),
SendToReport(
Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 182, 140 )} ),
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
<<{Arrange in Rows( 3 )}
);
Jim