Can anyone tell me if you know any R packages to use with the quasi-beta distribution family in this model?

Asked

Viewed 42 times

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 = "???????")

1 answer

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

You are not signed in. Login or sign up in order to post.