Previous Page | Next Page

The G3D Procedure

Example 7: Generating a Rotated Scatter Plot with Modified Axes


Procedure features:

Scatter statement

CAXIS=

COLOR=

ROTATE=

SHAPE=

SIZE=

XTICKNUM=

YTICKNUM=

ZTICKNUM=

ZMAX=

ZMIN=

Sample library member: GTDROTSC

[Rotated Scatter Plot]

This scatter plot modifies the procedure defaults to:

 Note about code
goptions reset=all border;
 Note about code
title1 "Relative Humidity in Percent";
footnote1 j=r f="Albany ANT/it"
                             "Source: William L. Donn, Meteorology, Fourth Edition";
 Note about code
proc g3d data=sashelp.humid;
   scatter airtemp*bulbtemp=humidity/
      shape=pillar
       color=colorvar
       caxis=blue
       rotate=-15
       yticknum=5
       xticknum=2
       zticknum=4
       zmin=0
       zmax=100
run;
quit;

Previous Page | Next Page | Top of Page