Chapter Contents |
Previous |
Next |
The GREDUCE Procedure |
Procedure features: |
| |||
Other features: |
| |||
Sample library member: | GR24N01 |
libname reflib 'SAS-data-library'; libname maps 'SAS-data-library'; goptions reset=global gunit=pct border cback=white colors=(black blue green red) ftext=swiss htitle=6 htext=3; |
title1 'Canada'; title2 h=4 'Using all DENSITY values'; footnote1 j=l ' From SAS/GRAPH ' '02'x ' Software CANADA2 Data Set'; footnote2 j=r 'GR24N01(a) '; |
pattern value=mempty repeat=12 color=blue; |
proc gmap map=maps.canada2 data=maps.canada2 all; id province; choro province / nolegend; run; |
proc greduce data=maps.canada2 out=reflib.can2; id province; run; |
title2 h=4 'Using only DENSITY values 0 to 2'; footnote2 j=r 'GR24N01(b) '; |
proc gmap map=reflib.can2(where=(density<3)) data=reflib.can2 all; id province; choro province / nolegend; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.