Chapter Contents |
Previous |
Next |
The CORR Procedure |
The default correlation analysis includes descriptive statistics, Pearson correlation statistics, and probabilities for each analysis variable. You can save the correlation statistics in a SAS data set for use with other statistical and reporting procedures.
Simple Correlation Analysis for a Fitness Study Using PROC CORR is the simplest form of PROC CORR output. Pearson correlation statistics are computed for all numeric variables from a study investigating the effect of exercise on physical fitness. The statements that produce the output follow:
options pagesize=60; proc corr data=fitness; run;
Simple Correlation Analysis for a Fitness Study Using PROC CORR
Customized Correlation Analysis with Partial Covariances and Correlation Statistics and Output Data Set with Pearson Partial Correlation Statistics illustrate the use of PROC CORR to calculate partial correlation statistics for the fitness study and to store the results in an output data set. The statements that produce the analysis also
Customized Correlation Analysis with Partial Covariances and Correlation Statistics
Output Data Set with Pearson Partial Correlation Statistics
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.