Chapter Contents |
Previous |
Next |
The UNIVARIATE Procedure |
Procedure features: |
| ||||||||||||||||
Other features: |
| ||||||||||||||||
Data set: | SCORE |
Program |
options nodate pageno=1 linesize=64 pagesize=58;
proc univariate data=score mu0=80 alpha=.1 cibasic(type=lower) cipctlnormal normal plots plotsize=26; |
var final; |
output out=pctscore median=Median pctlpts=98 50 20 70 pctlpre=Pctl_ pctlname=Top Mid Low; title 'Examining the Distribution of Final Exam Scores'; run; |
proc print data=pctscore noobs; title1 'Quantile Statistics for Final Exam Scores'; title2 'Output Data Set from PROC UNIVARIATE'; run; |
Output |
The PCTSCORE data set contains one observation. The median value in Median is equivalent to the 50th percentile in PCTL_MID. | |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.