Date: Mon, 17 Nov 2008 16:49:37 -0600
Reply-To: Robin R High <rhigh@UNMC.EDU>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Robin R High <rhigh@UNMC.EDU>
Subject: Re: proc
In-Reply-To: <e860775e-0ea1-430f-8d9b-59cd7d5e6ac4@d36g2000prf.googlegroups.com>
Content-Type: text/plain; charset="US-ASCII"
Do you need a type=corr option?
proc varclus data=Corroutput(type=corr);
run;
Robin High
UNMC
hd <heenagd@GMAIL.COM>
Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
11/17/2008 03:16 PM
Please respond to
hd <heenagd@GMAIL.COM>
To
SAS-L@LISTSERV.UGA.EDU
cc
Subject
proc
I have questions about the function proc varclus.
My data set looks like this below, it is a correlation matrix
it is stored as Corroutput
a1 a2 a3 a4 a5 ...... a40
1
2
3
4
5
.
.
.
.
40
I am trying to run the proc varclus function doing the following
proc varclus data=Corroutput;
run;
No output is being produced I dont know what I am doing wrong.
Any help will be appreciated
Thanks