Previous Page | Next Page

The G3D Procedure

Example 2: Generating a Rotated Surface Plot


Procedure Features

PLOT statement options:

CTOP=

GRID

ROTATE=

ZMAX=

ZMIN=

Data set: SASHELP.LAKE
Sample library member: GTDROTAT

[Rotated Surface Plot]

The surface plot shown in this example illustrates enhancements to the axes and the presentation. The plot illustrates a grid originating from the tick marks. A Z- axis range increase raised the plot above the horizontal X-Y plane. CTOP= green changed the top color and ROTATE= rotated the plot 45 degrees toward the viewer.

 Note about code
goptions reset=all border;
 Note about code
title "Rotated Surface Plot";
footnote j=r "GTDROTAT";
 Note about code
proc g3d data=sashelp.lake;
   plot length*width=depth/
      ctop=green
      grid
      rotate=45
      zmax=5
      zmin=-50;
run;
quit;

Previous Page | Next Page | Top of Page