| Date: | Mon, 28 Jul 2008 06:48:11 -0700 |
| Reply-To: | valkrem@yahoo.com |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Val Krem <valkrem@YAHOO.COM> |
| Subject: | Correlation output |
| Content-Type: | text/plain; charset=iso-8859-1 |
Dear SAs users,
I am doing a correlation analysis two variables against several variables (>100). the default SAS out put givs N X N matrix which is very hard to read it.
Is it possible to change the out put to N x 2 as shown below?
Val
Default output
X
v1
v2
v3
v4
v5
v1
1
0.95
0.68
0.5
0.1
v2
0.95
1
-0.21
-0.5
0.9
v3
0.68
1
v4
0.45
1
v5
0.12
1
Desired output
v1
v2
v1
1
0.95
v2
0.95
1
v3
0.68
-0.21
v4
0.45
-0.45
v5
0.12
0.89
|