[R] Do I need a special package to run LSD tests?

2008-08-25 Thread michal33
Hi there, I am trying to run LSD.test(model) I used the following commands: attach(model) m1<- glm(ttl.m ~ site+year, family=quasipoisson, data= model) df<-df.residual(m1) MSerror<-deviance(m1)/df The following command did not work: comparison<- LSD.test (ttl.m, site+year, df, MSerror, alpha =

Re: [R] Do I need a special package to run LSD tests?

2008-08-26 Thread michal33
Thanks for the answers, this one worked: >library(Agricolae) michal33 wrote: > > Hi there, > I am trying to run LSD.test(model) > > I used the following commands: > attach(model) > m1<- glm(ttl.m ~ site+year, family=quasipoisson, data= model) > df<-df.residu