Does anybody know why my bars are not displaying colors? Thank you!
ggplot(data = class_survey, aes(x = coding_exp_words, fill = coding_exp_words)) +
geom_bar() +
scale_fill_manual(values = c("Some" = "red",
"None" = "blue",
"Very little" = "purple",
"A bit" = "green",
"A good deal" = "black")) +
theme(axis.ticks.x = element_blank(),
axis.text.x = element_blank())