Displaying 1 result from an estimated 1 matches for "logtrapd".
Did you mean:
logtape
2013 May 18
1
glmer.nb: function not in downloaded lme4 package?
...library(lme4)
help(glmer.nb)
# I receive the following message:
No documentation for ‘glmer.nb’ in specified packages and libraries:
you could try ‘??glmer.nb’
# I called the glmer() function successfully, i.e.
glmer(CNos ~ Year+Month+(1|Vessel), data=Occ.cr, family=poisson, offset=Occ.cr$logtrapd)
# but when I tried this:
glmer.nb(CNos ~ Year+Month+(1|Vessel), data=Occ.cr, offset=Occ.cr$logtrapd)
# I got the error message:
Error: could not find function "glmer.nb"
# Can you please provide advice on how I might use glmer.nb or alternative code on how I might perform...