Displaying 2 results from an estimated 2 matches for "ctipo".
Did you mean:
tipo
2006 Jan 25
1
About lmer output
Dear R users:
I am using lmer fo fit binomial data with a probit link function:
> fer_lmer_PQL<-lmer(fer ~ gae + ctipo + (1|perm) -1,
+ family = binomial(link="probit"),
+ method = 'PQL',
+ data = FERTILIDAD,
+ msVerbose= True)
The output look like this:
> fer_lmer_PQL
Generalized linear mixed model fit using PQL
Formula: fer ~ ga...
2005 Dec 20
1
Random effects with glm()
...function. Actually I have several measurement per female, thus it would be nice if I can include a random permanent effect of female in the model. I order to take into account for the variance covariance estructure of the data.
I supply the calculation in this way:
fert_probit<-glm(fer ~ gae + ctipo -1, family = binomial(link="probit"), data = FERTILIDAD)
Thus my question is: Do exit same option in the glm() function to allow for random effects?, similar to the random option in lme()
Thanks in advance
Juan Pablo.