Correlations in SAS
Correlation in SAS is valuable tools which determine the relationship between two variables or more variables. Mostly used in predictive modelling and forecasting. By default proc corr gives the simple statistics and spearman correlation.
Correlations having following features
- No simple options are used for preventing the print of simple statistics.
- Nocorr options are used for prevent the print of correlation parameter
- Var statements are used for controlling the variables
- The FISHER option in the PROC CORR statement requests confidence limits and p–values for Pearson and Spearman correlation coefficients based on Fisher’s z transformation.
- The PLOTS=MATRIX option in the PROC CORR statement uses ODS graphics to produce either a rectangular matrix plot
- The PLOTS=SCATTER option in the PROC CORR statement uses ODS graphics to produce scatter plots for variables. By default, the scatter plot also includes a 95% prediction ellipse.
November 15, 2023- -
-
Report