Error in glmmadmb(.....) The function maximizer failed (couldn't find STD file)
- by Joe King
This works fine:
fit.mc1 <-MCMCglmm(bull~1,random=~school,data=dt1,family="categorical",
prior=list(R=list(V=1, fix=1), G=list(G1=list(V=1, nu=0))), slice=T)
So does this:
fit.glmer <- glmer(bull~(1|school),data=dt1,family=binomial)
But now I am trying to work with the package glmmadmb and this does not work:
fit.mc12 <-…