Percent of Factor for "X and below"
Hi,
In JMP every row know to which bar it belongs in a bar graph. So, it's very easy to calculate % of Factor.
e.g. ratio of female and male students plotted versus age ("X"):
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
Graph Builder(
Variables( X( :age ), Overlay( :sex ) ),
Elements(
Bar(
X,
Bar Style( "Stacked" ),
Summary Statistic( "% of Factor" )
...