Generate contour plot. Generate a simple contour plot using SASHELP.LAKE. Use one PLOT statement to define the grid and the contour lines.


proc gcontour data=sashelp.lake;
    plot length*width=depth;
   run;
quit;