
PROPORTIONAL
changes the size of the cells in proportion to the content of the discrete axis.
The following examples show the use of PROPORTION on the X axis and on the Y
axis. The first example adjusts the width of the two cells relative to the number of
vertical bars along the X axis of each cell. The second example adjusts the height of
the rows relative to the number of horizontal bars along the Y axis for each row.
ods graphics / width=3.5in;
proc sgpanel data=sashelp.class;
where age > 14;
panelby age / uniscale=row proportional;
vbar name / response=height stat=mean;
run;
ods graphics / reset=width;
ods graphics / width=3.5in;
proc sgpanel data=sashelp.class; ...