BookmarkSubscribeRSS Feed
Chala
Calcite | Level 5

Hello everyone, 

 

I have a big Pearson Correlation table with 15 variables. I am using the following code. The table does not fit the screen and I have to scrool left and right all the time. How can I make this table smaller? 

 

Thank you! 

 

proc corr

data=HIT OUTP=HITp;

var   v1 v2 v3 v4 v5 v6 v7 v8 v9 v10 v11 v12 v13 v14 v15;

run;

2 REPLIES 2
Reeza
Super User

There's a limit to how many things you can see at once. 

 

You can capture the output to a table and then customize the output so it's shown row by row, similar to a list report from proc freq.

 

 

Var1 Var2 Corr P-Value

v1 v2 XX YY

v1 v3 XX YY

v1 v4 XX YY

 

 

Chala
Calcite | Level 5

Great suggestion. Thank you!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 1387 views
  • 0 likes
  • 2 in conversation