Chapter Contents |
Previous |
Next |
The CORR Procedure |
Procedure features: |
| |||||||||||||
Data set: | FITNESS |
See OUTP= Data Set with Pearson Partial Correlations for a listing of the output data set.
Program |
options nodate pageno=1 linesize=120 pagesize=60;
proc corr data=fitness spearman kendall cov nosimple outp=fitcorr; |
var weight oxygen runtime; |
partial age; |
label age = 'Age of subject' weight = 'Wt in kg' runtime = '1.5 mi in minutes' oxygen = 'O2 use'; |
title1 'Partial Correlations for a Fitness and Exercise Study'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.