Previous Page | Next Page

The GCONTOUR Procedure

Example 1: Simple Contour


Procedure features: PLOT Statement
Data Set SASHELP.LAKE
Sample library member: GCTLAKE

[untitled graphic]

This simple contour plot displays the various depths of a lake. The dimensions of the lake are plotted on the x and y axes. The z variable is plotted as the third dimension, as levels represented by contour lines. The contour line levels are displayed and labeled in the legend.

 Note about code
goptions reset=all border;
 Note about code
title "Lake Data";
footnote j=r "GCTLAKE";
 Note about code
proc gcontour data=sashelp.lake;
    plot length*width=depth;
   run;
quit;

Previous Page | Next Page | Top of Page