Date: Wed, 13 Jul 2005 10:14:01 -0700
Reply-To: Jay <jt@NOWHERE.RIGHTNOW>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jay <jt@NOWHERE.RIGHTNOW>
Subject: Re: Proc mixed regression coefficients in ANCOVAS
In-Reply-To: <1121274502.274793.35320@g47g2000cwa.googlegroups.com>
Content-Type: text/plain; charset=us-ascii; format=flowed
Specify the 's' option in the model statement to print the parameter
estimates.
bmilan@bellsouth.net wrote:
> Hello everyone,
>
> We have searched the comp.soft-sys.sas listerv and were unable to find
> an answer to our question.
>
> We are running an ANCOVA with proc mixed and getting the main effect
> estimates, but how do we get the slope estimates for the covariables?
>
> Here's the model:
>
> proc mixed data=milan.logfish;
> class habitat area season;
> model l_fish = habitat area season habitat*area habitat*season
> area*season bulkd totpc stemden slope wtemp hrflood
> salinity/ DDFM=KENWARDROGER;
> lsmeans habitat area season habitat*area habitat*season area*season
> / pdiff
> adjust=tukey
> cl
> alpha=0.017;
> ods output diffs=ppp lsmeans=mmm;
> ods listing exclude diffs lsmeans;
> %include 'E:\Susanne\mancova\pdmix800.sas';
> %pdmix800 (ppp,mmm, alpha=.01, sort=yes);
> run;
>
> thanks
> Brian and Susanne
>
|