These intervals are based on the standard errors
calculated for parameters on the scale
of their internal parameterization depending on the family. Derived
quantities such as standard deviation parameters and dispersion
parameters are backtransformed. It follows that confidence
intervals for these derived quantities are asymmetric.
profile
This method computes a likelihood profile
for the specified parameter(s) using profile.glmmTMB;
fits a spline function to each half of the profile; and
inverts the function to find the specified confidence interval.
uniroot
This method uses the uniroot
function to find critical values of one-dimensional profile
functions for each specified parameter.
# NOT RUN {data(sleepstudy, package="lme4")
model <- glmmTMB(Reaction ~ Days + (1|Subject), sleepstudy)
confint(model)
# }# NOT RUN {confint(model,parm=1,method="profile")
# }