Chapter Contents |
Previous |
Next |
The GPLOT Procedure |
Procedure features: |
| |||
Other features: |
| |||
Sample library member: | GR21N01 |
libname reflib 'SAS-data-library'; goptions reset=global gunit=pct border cback=white colors=(black blue green red) ftitle=swissb ftext=swiss htitle=6 htext=4; |
data reflib.jobs; length eng $5; input eng dollars num; datalines; Civil 27308 73273 Aero 29844 70192 Elec 22920 89382 Mech 32816 19601 Chem 28116 25541 Petro 18444 34833 ; |
title1 'Member Profile'; title2 'Salaries and Number of Member Engineers'; footnote h=3 j=r 'GR21N01 '; |
axis1 offset=(5,5); |
proc gplot data=reflib.jobs; format dollars dollar9.; bubble dollars*eng=num / haxis=axis1; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.