|
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
|