LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (August 1997, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page