![]() Chapter Contents |
![]() Previous |
![]() Next |
| The GCONTOUR Procedure |
| Procedure features: |
| ||
| Other features: |
| ||
| Sample library member: | GR14N01 |
| | 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.clay; input x y pct_clay; datalines; -10 -10 2.316 -10 -9 1.816 -10 -8 2.427 ...more data lines... 10 8 . 10 9 . 10 10 . ; |
| | proc g3grid data=reflib.clay out=reflib.clay2;
grid y*x=pct_clay / naxis1=21
naxis2=21
join;
run; |
| | title1 'Clay Content at Site A'; footnote1 j=r 'GR14N01 '; |
| | proc gcontour data=reflib.clay2; format pct_clay 2.0; plot y*x=pct_clay; run; quit; |
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.