ggcoef_multicomponents | R Documentation |
ggcoef_multicomponents(
model,
type = c("dodged", "faceted", "table"),
component_col = "component",
component_label = NULL,
tidy_fun = broom.helpers::tidy_with_broom_or_parameters,
tidy_args = NULL,
conf.int = TRUE,
conf.level = 0.95,
exponentiate = FALSE,
variable_labels = NULL,
term_labels = NULL,
interaction_sep = " * ",
categorical_terms_pattern = "{level}",
add_reference_rows = TRUE,
no_reference_row = NULL,
intercept = FALSE,
include = dplyr::everything(),
significance = 1 - conf.level,
significance_labels = NULL,
return_data = FALSE,
table_stat = c("estimate", "ci", "p.value"),
table_header = NULL,
table_text_size = 3,
table_stat_label = NULL,
ci_pattern = "{conf.low}, {conf.high}",
table_witdhs = c(3, 2),
...
)
ggcoef_multinom(
model,
type = c("dodged", "faceted", "table"),
y.level_label = NULL,
tidy_fun = broom.helpers::tidy_with_broom_or_parameters,
tidy_args = NULL,
conf.int = TRUE,
conf.level = 0.95,
exponentiate = FALSE,
variable_labels = NULL,
term_labels = NULL,
interaction_sep = " * ",
categorical_terms_pattern = "{level}",
add_reference_rows = TRUE,
no_reference_row = NULL,
intercept = FALSE,
include = dplyr::everything(),
significance = 1 - conf.level,
significance_labels = NULL,
return_data = FALSE,
table_stat = c("estimate", "ci", "p.value"),
table_header = NULL,
table_text_size = 3,
table_stat_label = NULL,
ci_pattern = "{conf.low}, {conf.high}",
table_witdhs = c(3, 2),
...
)
model |
a regression model object |
type |
a dodged plot, a faceted plot or multiple table plots? |
component_col |
name of the component column |
component_label |
an optional named vector for labeling components |
tidy_fun |
( |
tidy_args |
Additional arguments passed to
|
conf.int |
( |
conf.level |
the confidence level to use for the confidence
interval if |
exponentiate |
if |
variable_labels |
( |
term_labels |
( |
interaction_sep |
( |
categorical_terms_pattern |
( |
add_reference_rows |
( |
no_reference_row |
( |
intercept |
( |
include |
( |
significance |
level (between 0 and 1) below which a
coefficient is consider to be significantly different from 0
(or 1 if |
significance_labels |
optional vector with custom labels for significance variable |
return_data |
if |
table_stat |
statistics to display in the table, use any column name
returned by the tidier or |
table_header |
optional custom headers for the table |
table_text_size |
text size for the table |
table_stat_label |
optional named list of labeller functions for the displayed statistic (see examples) |
ci_pattern |
glue pattern for confidence intervals in the table |
table_witdhs |
relative widths of the forest plot and the coefficients table |
... |
parameters passed to |
y.level_label |
an optional named vector for labeling |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.