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 (March 2000, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 15 Mar 2000 14:18:55 -0500
Reply-To:   William Dudley <wdudley@SPH.EMORY.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   William Dudley <wdudley@SPH.EMORY.EDU>
Organization:   Rollins School of Public Health
Subject:   repeat statment in proc mixed
Content-Type:   text/plain; charset=us-ascii

I have a desing with two within subjects variables. I am trying to replicate an exampple in Maxwell and delaney page 497 I have the data in a stacked format like this

id Noise Angle rt 1 1 1 458 1 1 2 460 1 1 3 460 1 2 1 490 1 2 2 480 1 2 3 600

etc. each suject has 6 lines of data.

I thought that the proc mixed statments would look like this:

Proc mixed info noclprint data = big_one; class id noise angle; model rt = noise angle noise*angle/ddf= 9 18 18; repeated / type=un sub=id(angle noise); lsmeans noise*angle; run;

I get the correct means but the F values are very differnt from those in the text. thanks bill

ANy suggestions


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