Star

How does class size affect g4 scores?
Show the code
ggplot(drawed, aes(x = .epred, fill = classtype)) +
  geom_density(alpha = 0.5) +
  scale_fill_manual(values = c("reg" = "#fc8d62", "small" = "#66c2a5")) +
  labs(title = "Posterior for Exam Score",
       subtitle = "Class size has no effect on exam score",
       x = "Exam Score",
       y = "") +
  theme_minimal()