Previous Page | Next Page

The G3D Procedure

Example 3: Generating a Tilted Surface Plot


Procedure features:

PLOT statement options:

SIDE

TILT=

Data set: SASHELP.LAKE
Sample library member: GTDTILT

[Tilted Surface Plot]

Simple modifications displayed in Generating A Surface Plot are generated by tilting the surface plot 30 degrees toward you, and adding a side wall.

 Note about code
goptions reset=all border;
 Note about code
title "Tilted Surface Plot";
footnote j=r "GTDTILT";
 Note about code
proc g3d data=sashelp.lake;
   plot length*width=depth/
      side
      tilt=30;
run;
quit;

Previous Page | Next Page | Top of Page