Transforms a “summary.tsgarch” object into a flextable with options on symbolic representation and model equation.
# S3 method for summary.tsgarch.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(toupper(x$model), " Model Summary"),
...
)
A flextable object.
an object of class “summary.tsgarch”.
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.