Chapter Contents |
Previous |
Next |
The G3GRID Procedure |
Procedure features: |
| |||||||
Data set: | REFLIB.NUMS | |||||||
Sample library member: | GR30N04 |
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 'Contour Plot after Default Interpolation'; footnote j=r 'GR30N04(a) '; |
axis1 width=3; |
proc g3grid data=reflib.nums out=numdef; grid y*x=z / axis1=-5 to 5 by .5 axis2=-5 to 5 by .5; run; |
proc gcontour data=numdef; plot y*x=z / haxis=axis1 vaxis=axis1; run; |
title 'Contour Plot after Spline Interpolation'; footnote j=r 'GR30N04(b) '; |
proc g3grid data=reflib.nums out=numspl; grid y*x=z / spline axis1=-5 to 5 by .5 axis2=-5 to 5 by .5; run; |
proc gcontour data=numspl; plot y*x=z / haxis=axis1 vaxiss=axis1; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.