Date: Wed, 19 Jun 2002 12:05:20 -0500
Reply-To: Paul.R.Swank@uth.tmc.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Paul R Swank <Paul.R.Swank@UTH.TMC.EDU>
Subject: Re: help: proc mixed
In-Reply-To: <200206191648.g5JGmcC11296@listserv.cc.uga.edu>
Not if you put it in the class statement.
Paul R. Swank, Ph.D.
Professor, Developmental Pediatrics
Medical School
UT Health Science Center at Houston
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU]On Behalf Of P.
Lee
Sent: Wednesday, June 19, 2002 11:49 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: help: proc mixed
In the following code, the variable SAP has four categories. My question
is: is it necessary to create dummy variables for such a variable in Proc
Mixed? Thanks in advance for your help.
Y. L
proc mixed data = a1bir_mix noclprint covtest noitprint;
class sub sap;
model weight = sap loneprop lt9_tot tdvce_10 avh_1000
denshect mi_1000 ttnai_10/solution ddfm=bw;
random intercept/type=un sub=sub;
run;