-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). proc gchart data=clinic.insure;
vbar company / sumvar=total
patternid=midpoint;
where total>570;
run;
-
Submit the program and view the output.
-
Without recalling the program, submit these statements and view the additional
charts:
-
an HBAR statement requesting the mean of
BalanceDue for the chart
variable Company
-
a RUN statement.
-
Submit a QUIT statement to end the GCHART procedure.
Return here and select Next.
|