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 (June 2007, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sun, 24 Jun 2007 23:14:37 -0700
Reply-To:   David L Cassell <davidlcassell@MSN.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   David L Cassell <davidlcassell@MSN.COM>
Subject:   Re: Proc Mixed Out of Memory at the last step
In-Reply-To:   <200706212231.l5LJLIUE000588@malibu.cc.uga.edu>
Content-Type:   text/plain; format=flowed

daisywang21@HOTMAIL.COM wrote back: > >Hi Peter, > >Sorry for missing the codes. By using the analog of education example, >here is the code I used. > >PROC MIXED DATA=work.test METHOD=ML IC NOCLPRINT scoring=5 maxfunc=500 >convh=1E-6 lognote; > CLASS school student outcome; > MODEL score = _var_ / s ddfm = bw OUTP=dept.OUT&num. ; > RANDOM INTERCEPT / SUBJECT=school GROUP=outcome /*s*/; > REPEATED outcome / SUBJECT=student(school) TYPE=CS; > *ods output CovParms=cp; >RUN;QUIT; > >The predictors (_var_ ) are about 10-15 variables plus their interaction >with outcome. There are about 50 outcomes for each of students nested >under school. So you can imagine how big the model becomes with the >interaction. I know it sounds crazy, but that's how it was designed. SAS >gave me all the estimated parameters, but not the prediction (error >happens to outp=). I'm wondering if there is anyway to get the prediction >as well. Thank you.

This looks like a survey sample to me. Is that the case? Do you have the survey design and survey weights?

If so, then PROC MIXED may not be the right tool to use here. You may need to start with something like PROC SURVEYREG instead.

HTH, David -- David L. Cassell mathematical statistician Design Pathways 3115 NW Norwood Pl. Corvallis OR 97330

_________________________________________________________________ Don’t miss your chance to WIN $10,000 and other great prizes from Microsoft Office Live http://clk.atdmt.com/MRT/go/aub0540003042mrt/direct/01/


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