Transforms a “summary.tsissm.estimate” object into a flextable with options on symbolic representation and model equation.
# S3 method for summary.tsissm.estimate
as_flextable(
x,
digits = max(3L, getOption("digits") - 3L),
signif.stars = getOption("show.signif.stars"),
include.symbols = TRUE,
include.equation = TRUE,
include.statistics = TRUE,
table.caption = paste0("ISSM Model: ", x$model),
...
)
A flextable object.
an object of class “summary.tsissm.estimate”.
integer, used for number formatting. Optionally, to avoid scientific notation, set ‘options(scipen=999)’.
logical. If TRUE, ‘significance stars’ are printed for each coefficient.
logical. If TRUE, replaces parameter names with their symbols (if they exist).
logical. If TRUE, adds a section with the symbolic model equation.
logical. If TRUE, adds a section with summary statistics on the model.
an optional string for the table caption.
additional arguments passed to flextable method.