br_show_table {bregr} | R Documentation |
Show model tidy results in table format
Description
Usage
br_show_table(
breg,
...,
args_table_format = list(),
export = FALSE,
args_table_export = list()
)
Arguments
breg |
A regression object with results (must pass |
... |
Arguments passing to |
args_table_format |
A list of arguments passing to |
export |
Logical. If |
args_table_export |
A list of arguments passing to |
Value
A table
See Also
Other br_show:
br_show_fitted_line()
,
br_show_fitted_line_2d()
,
br_show_forest()
,
br_show_forest_ggstats()
,
br_show_forest_ggstatsplot()
,
br_show_risk_network()
,
br_show_table_gt()
Examples
m <- br_pipeline(mtcars,
y = "mpg",
x = colnames(mtcars)[2:4],
x2 = "vs",
method = "gaussian"
)
br_show_table(m)
br_show_table(m, export = TRUE)
if (interactive()) {
br_show_table(m, export = TRUE, args_table_export = list(format = "html"))
}
[Package bregr version 1.0.0 Index]