contr_code_treatment | R Documentation |
Treatment coding sets the mean of the reference level (base) as the intercept. Each contrast compares one level with the reference level.
contr_code_treatment(fct, levels = NULL, base = 1)
fct |
the factor to contrast code (or a vector) |
levels |
the levels of the factor in order |
base |
the index of the level to use as baseline |
the factor with contrasts set
df <- sim_design(between = list(pet = c("cat", "dog")),
mu = c(10, 20), plot = FALSE)
df$pet <- contr_code_treatment(df$pet)
lm(y ~ pet, df) %>% broom::tidy()
df <- sim_design(between = list(pet = c("cat", "dog", "ferret")),
mu = c(2, 4, 9), empirical = TRUE, plot = FALSE)
df$pet <- contr_code_treatment(df$pet)
lm(y ~ pet, df) %>% broom::tidy()
df$pet <- contr_code_treatment(df$pet, base = 2)
lm(y ~ pet, df) %>% broom::tidy()
df$pet <- contr_code_treatment(df$pet, base = "ferret")
lm(y ~ pet, df) %>% broom::tidy()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.