View source: R/tidy_remove_intercept.R
tidy_remove_intercept | R Documentation |
Will remove terms where var_type == "intercept"
.
tidy_remove_intercept(x, model = tidy_get_model(x))
x |
( |
model |
(a model object, e.g. |
If the variable
column is not yet available in x
,
tidy_identify_variables()
will be automatically applied.
Other tidy_helpers:
tidy_add_coefficients_type()
,
tidy_add_contrasts()
,
tidy_add_estimate_to_reference_rows()
,
tidy_add_header_rows()
,
tidy_add_n()
,
tidy_add_pairwise_contrasts()
,
tidy_add_reference_rows()
,
tidy_add_term_labels()
,
tidy_add_variable_labels()
,
tidy_attach_model()
,
tidy_disambiguate_terms()
,
tidy_identify_variables()
,
tidy_plus_plus()
,
tidy_select_variables()
df <- Titanic |>
dplyr::as_tibble() |>
dplyr::mutate(Survived = factor(Survived))
glm(Survived ~ Class + Age + Sex, data = df, weights = df$n, family = binomial) |>
tidy_and_attach() |>
tidy_remove_intercept()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.