Date: Tue, 19 Aug 1997 00:29:07 GMT
Reply-To: Steve Gregorich <gregorich@PSG.UCSF.EDU>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Steve Gregorich <gregorich@PSG.UCSF.EDU>
Organization: University of California, San Francisco
Subject: Re: repeated measures file for proc mixed
Content-Type: Text/Plain; charset=ISO-8859-1
>>I want to run a repeated measures ANOVA using proc mixed . Usually, my file
has one record per subject and I must transpose it before running proc mixed.
Or you could try this.
data new (keep id age outcome);
set old;
id=subjid;
age=7;
outcome=var7;
output;
id=subjid;
age=15;
outcome=var15;
output;
HTH
Steve Gregorich
|