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 (December 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 6 Dec 2006 13:04:53 -0500
Reply-To:   Jianying Zhang <jzhang64@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Jianying Zhang <jzhang64@GMAIL.COM>
Subject:   Random statement with subjcet= option in proc glimmix
Content-Type:   text/plain; charset=ISO-8859-1; format=flowed

Dear SAS _L: I am working on an anaysis using proc glimmix. When I put subject= option in the random statement, I got error message for the estimate statement. Please see below sas log. I would really appreciate it if any one can help me out.

The reason I want to keep subject= option is that I am constructing a model with random intercept and slop.

proc glimmix data=two noclprint noitprint ;

class plan;

model numhit(event='1')=/s dist=bin link=logit ddfm=bw or ; random plan; estimate 'plan diff 1 vs 2' |plan 1 -1 0 0 0; run;

NOTE: Convergence criterion (PCONV=1.11022E-8) satisfied.

NOTE: PROCEDURE GLIMMIX used (Total process time):

real time 0.62 seconds

cpu time 0.62 seconds

proc glimmix data=two noclprint noitprint ;

class plan;

model numhit(event='1')=/s dist=bin link=logit ddfm=bw or ; random int/subject=plan; estimate 'plan diff 1 vs 2' |plan 1 -1 0 0 0; run;

NOTE: Convergence criterion (PCONV=1.11022E-8) satisfied.

ERROR: An invalid effect is given in an ESTIMATE statement; the statement is ignored.

NOTE: PROCEDURE GLIMMIX used (Total process time):

real time 1.01 seconds

cpu time 0.98 seconds

-- ---- ying


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