There is also a "fun" version to do this
with
20 analyted, 5 areas -> :age
sampling event -> :sex
just run the script and then right click on one of the Anovas and select Make combined Data Table
![hogi_0-1668574493798.png hogi_0-1668574493798.png](https://community.jmp.com/t5/image/serverpage/image-id/47371i0AA580B10F6200C5/image-size/medium?v=v2&px=400)
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = dt << Graph Builder(
Size( 437, 413 ),
Graph Spacing( 4 ),
Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) )
);
Oneway(
X( :sex ),
Y( :height ),
By( :age ),
SendToByGroup( Bygroup, Y( :height ) ),
SendToByGroup( Bygroup, X( :sex ), Means( 1 ), Mean Diamonds( 1 ) ),
);