Chapter Contents |
Previous |
Next |
The STANDARD Procedure |
Procedure features: |
| ||||||
Other features: |
|
Program |
options nodate pageno=1 linesize=80 pagesize=60; proc format; value popfmt 1='Stable' 2='Rapid'; run; |
proc sort data=lifexp; by populationrate; run; |
proc standard data=lifexp mean=0 std=1 replace print out=zscore; |
by populationrate; |
format populationrate popfmt.; title1 'Life Expectancies by Birth Rate'; run; |
proc print data=zscore noobs; title 'Standardized Life Expectancies at Birth'; title2 'by a Country''s Birth Rate'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.