Displaying 1 result from an estimated 1 matches for "modelnointeract".
2009 Dec 14
2
Bug in lnme package?
...ong the river (fixed effect),
with six plots at each distance.
My model looks like this:
*
Model<-lme(Webslog1~Treatment*Distance,random=~Week|Uniquesite/Uniqueplot,method="REML")
*
I want to leave out the interaction between Treatment and Distance, so that
would go like this:
*
>ModelNoInteraction<-lme(Webslog1~Treatment+Distance,random=~Week|Uniquesite/Uniqueplot,method="REML")
*
However, then i get the error message:*
"Error in model.frame.default(formula = ~Week + Webslog1 + Treatment + :
invalid type (list) for variable 'Distance' "*
I first thought...