Hi,
Seems that Summary Statistics in Graph builder are just available for one value on the X axis?!
is there a trick to get the red data points for displayed as well?
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "one",
Formula( 1 )
);
Graph Builder(
Graph Spacing( 4 ),
Variables(
X( :height ),
X( :weight, Position( 1 ) ),
Y( :one ),
Y( :sex )
),
Elements(
Position( 1, 1 ),
Points( X( 1 ), X( 2 ), Y, Summary Statistic( "N" ) ),
Bar( X( 1 ), X( 2 ), Y, Bar Style( "Stacked" ), Summary Statistic( "N" ) )
),
Elements( Position( 1, 2 ), Points( X( 1 ), X( 2 ), Y ) )
);