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;
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
Great suggestion. Thank you!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.