Chapter Contents

Previous

Next
The G3D Procedure

Example 3: Tilting Surface Plot


Procedure features:
PLOT statement options:
SIDE
TILT=
Data set: REFLIB.HAT
Sample library member: GR29N03

[IMAGE]

This example modifies that shown in Generating a Default Surface Plot by tilting the surface plot 15° toward you and adding a side wall.
 Note about code
libname reflib 'SAS-data-library';
goptions reset=global gunit=pct border cback=white
         colors=(black blue green red)
         ftext=swiss ftitle=swissb htitle=6 htext=4;
 Note about code
title 'Surface Plot of HAT Data Set';
footnote j=r 'GR29N03 ';
 Note about code
proc g3d data=reflib.hat;
   plot y*x=z / side
                tilt=15;
run;
quit;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.