This is the code I’m currently using.
ggplot(data = results,aes(x= Education, fill=Benefit, na.rm = TRUE)) +
labs(x= “Level of Education”, y = “Number of Participants”, fill = “Benefit Felt”) +
geom_bar(stat=”count”, na.rm = TRUE)
I would just like to know if there’s a way for me to change the 1-4 numbering on the graph to words.
New contributor
Olivia Pratt is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.