Chapter Contents |
Previous |
Next |
The GPLOT Procedure |
Procedure features: |
| |||||||||
Data set: | REFLIB.JOBS | |||||||||
Sample library member: | GR21N03 |
This example modifies Labeling and Sizing Plot Bubbles to show how a BUBBLE2 statement generates a right vertical axis that displays the values of the vertical coordinates in a different scale from the scale that is used for the left vertical axis. Salary values are scaled by dollars on the left vertical axis and by yen on the right vertical axis.
BUBBLE and BUBBLE2 statement options control the size and appearance of the bubbles and their labels. In particular, the VAXIS options calibrate the axes so that the data points are identical and only one set of bubbles appears.
Note: If the data points
are not identical, two sets of bubbles are displayed.
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=3; |
data reflib.jobs2; set reflib.jobs; yen=dollars*125; run; |
title1 'Member Profile'; title2 h=4 'Salaries and Number of Member Engineers'; footnote j=r 'GR21N03 '; |
axis1 offset=(5,5) label=none width=3 value=(h=4); |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.