check_model() turns diagnostics into compact basic automated checks for
broad applied use. It does not replace visual inspection, but it provides a
stable first pass over convergence, marginal calibration, residual dependence,
and scoring summaries.
Usage
check_model(
object,
include_vcov = FALSE,
include_plots = FALSE,
dependence_cor_cutoff = 0.25,
...
)Arguments
- object
A fitted
gamlss.longitudinalobject.- include_vcov
Logical; include variance-covariance inference metadata via
summary.gamlss.longitudinal().- include_plots
Logical; include standard diagnostic plot objects in
check$plots. Visual review should usually useplot(object)or the explicit diagnostic helpers instead.- dependence_cor_cutoff
Absolute lag-1 Rosenblatt normal-score residual correlation above which the dependence check is flagged. The default is a review threshold rather than a formal hypothesis test.
- ...
Passed to
summary.gamlss.longitudinal()wheninclude_vcovisTRUE.