library(tidyverse)
library(scales)
library(car)
theme_set(
theme_bw() + theme(plot.title = element_text(hjust = 0.5))
)<- file.path("data", "pigs.csv") |>
pigs read_csv() |>
mutate(
dose = fct(dose, levels = c("Low", "Med", "High")),
supp = fct(supp)
)