Chapter Contents |
Previous |
Next |
The G3D Procedure |
Procedure features: |
| |
Sample library member: | GR29N01 |
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; |
data reflib.hat; do x=-5 to 5 by 0.25; do y=-5 to 5 by 0.25; z=sin(sqrt(x*x+y*y)); output; end; end; run; |
title 'Surface Plot of HAT Data Set'; footnote j=r 'GR29N01 '; |
proc g3d data=reflib.hat; plot y*x=z; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.