Previous Page | Next Page

The G3D Procedure

Example 1: Generating A Surface Plot


Procedure features:

PLOT statement

Sample library member: GTDSURFA

[Surface plot of sashelp.lake data set]

This surface plot reveals the shape of a generated data set named LAKE. The axes are scaled to include all data values. Each axis is labeled with the name or label of the corresponding variable. The tick marks on the axes are divided into three even intervals. The horizontal plane is rotated 70° around the Z axis. The graph is tilted 70 degrees toward you. The colors are derived from the ODS style.

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

Previous Page | Next Page | Top of Page