Regression coef plot from gtsummary. Slightly modified to pass on arguments
Source:R/regression_plot.R
plot.tbl_regression.Rd
Regression coef plot from gtsummary. Slightly modified to pass on arguments
Usage
# S3 method for class 'tbl_regression'
plot(
x,
plot_ref = TRUE,
remove_header_rows = TRUE,
remove_reference_rows = FALSE,
...
)
Examples
if (FALSE) { # \dontrun{
mod <- lm(mpg ~ ., default_parsing(mtcars))
p <- mod |>
gtsummary::tbl_regression() |>
plot(colour = "variable")
} # }