Chapter Contents |
Previous |
Next |
The G3GRID Procedure |
Procedure features: |
| |||||
Data set: | REFLIB.NUMS | |||||
Sample library member: | GR30N03 |
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=3; |
title 'Surface Plot after Partial Interpolation'; footnote j=r 'GR30N03 '; |
proc g3grid data=reflib.nums out=partial; grid y*x=z / partial near=8 axis1=-5 to 5 by .5 axis2=-5 to 5 by .5; run; |
proc g3d data=partial; 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.