
Interaction
For this value to take effect, a BY-group must be specified in the
procedure.
CELL
the percentages within each panel cell round up to 100%.
GRAPH
the percentages across the entire graph round up to 100%
GROUP
the percentages across groups within a category round up to 100%.
Interaction
For this value to take effect, the GROUP= option must be specified
in the plot statement.
In the following examples, the first example specifies a value of GRAPH (the
default), and the second example specifies a value of GROUP.
ods graphics on / reset=all;
ods graphics on / width=4.5in;
PCTLEVEL=GRAPH
proc sgpanel data=sashelp.cars pctlevel=graph;
panelby origin; ...