A simple method would be to use New Window(). Put both variability charts into the argument and it should combine them into a single window:
New Window("My Report",
Variability Chart(...);
Variability Chart(...);
);
A example using JMP sample data is below.
Best,
M
----------------------------------------
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "My Report",
Variability Chart(
Y( :weight ),
X( :age ),
Max Iter( 100 ),
Conv Limit( 0.00000001 ),
Number Integration Abscissas( 128 ),
Number Function Evals( 65536 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Std Dev Chart( 1 )
);
Variability Chart(
Y( :height ),
X( :age ),
Max Iter( 100 ),
Conv Limit( 0.00000001 ),
Number Integration Abscissas( 128 ),
Number Function Evals( 65536 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Std Dev Chart( 1 )
);
);