2
Can someone tell me if you know any packets of R to use with family distribution quasi-beta!
model:
pse <- (ps~tr+tra+ds+(1|prop)+(1|in)+(1|nr),data=pes1,family = "???????")
2
Can someone tell me if you know any packets of R to use with family distribution quasi-beta!
model:
pse <- (ps~tr+tra+ds+(1|prop)+(1|in)+(1|nr),data=pes1,family = "???????")
3
It is not possible to give a proper response without knowing how your data is. But at first you can use glm with the family "quasi" and specifying the variance function to be the same as in Beta:
pse <- glm(ps ~ tr + tra + ds + (1|prop) + (1|in) + (1|nr), data = pes1,
family = quasi(link = "logit", variance = "mu(1-mu)"))
Browser other questions tagged r
You are not signed in. Login or sign up in order to post.