Graph builder - Summary Statistics for multiple X values
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 )
),
...