A tibble with columns: term, estimate, conf.low, conf.high,
level, component.
Arguments
object
A beezdemand_nlme object from fit_demand_mixed().
parm
Character vector of parameter names to compute CIs for.
Default includes all fixed effect parameters.
level
Confidence level (default 0.95).
method
Character. Method for computing intervals:
"wald": Wald-type intervals using asymptotic normality (default, fast)
"profile": Profile likelihood intervals via nlme::intervals() (slower
but more accurate for small samples)
...
Additional arguments passed to nlme::intervals() when
method = "profile".
Details
For Wald intervals, confidence bounds are computed as estimate ± z * SE
using standard errors from the model summary.
For profile intervals, nlme::intervals() is called on the underlying
nlme model object. This method provides more accurate intervals but can be
computationally intensive for complex models.