I have a set of a data I'm working on but can't seem to organize the bin size of my data
vgsales %>%
ggplot(aes(User_Score)) +
geom_bar()
The bins are all crowded and not sure how to make them look nicer:
I would like them to range from 1-10 but with a bin size of 0.5. Unsure how to do that. I'm a beginner and in need of help.