Last chance! 50% off unlimited learning
Sale ends in
A print()
-method for objects from model_parameters()
.
# S3 method for parameters_model
print(x, pretty_names = TRUE,
split_components = TRUE, ...)
An object returned by model_parameters()
.
Pretty parameters' names.
Logical, if TRUE
(default), For models with
multiple components (zero-inflation, smooth terms, ...), each component is
printed in a separate table. If FALSE
, model parameters are printed
in a single table and a Component
column is added to the output.
Arguments passed to or from other methods.
NULL
# NOT RUN {
library(parameters)
library(glmmTMB)
model <- glmmTMB(
count ~ spp + mined + (1 | site),
ziformula = ~mined,
family = poisson(),
data = Salamanders
)
mp <- model_parameters(model)
print(mp, pretty_names = FALSE)
print(mp, split_components = FALSE)
# }
Run the code above in your browser using DataLab