BookmarkSubscribeRSS Feed
pradeepad
Calcite | Level 5

In SAS proc corr, I want the output to show only Pearson Correlation Coefficient. By default, the output also shows the following :- Prob > |r| under H0: Rho=0 and Number of observations. How do I do this? Thanks for your help.

3 REPLIES 3
ballardw
Super User

You can use the OUTP= option in Proc Corr to send the Pearson statistics to an output data set and then print what you need from there.

stat_sas
Ammonite | Level 13

proc corr data=have outp=corp;

var var1;

with var2 var3.....;

run;

proc print;

run;

OsoGris
SAS Employee

There is also a NOPROB option on the PROC CORR statement that will suppress the p-values in the default output.

Here is a link containing the PROC CORR documentation - - Base SAS(R) 9.4 Procedures Guide: Statistical Procedures, Third Edition

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1651 views
  • 6 likes
  • 4 in conversation