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;
... View more