are there any ways to categorised the same frequency as others because I'm having 100 data in x. This will need to be done with ggplot.
library('ggplot2')
test <- ggplot(data =albums_df,aes(x=People)) + stat_count(width = 0.5) +
scale_y_continuous(breaks = seq(1, 10, 1)) + coord_flip()
print(test)
My x is people and I want to name the same frequency as others to make my chart looks neater. Thank you