I would like to know if it is possible to display the frequencies at the top of each counting bar in a ggplot histogram.
This is the code I have got so far:
br <- seq(0, 178, 10)
ggplot(dfAllCounts, aes(x=months)) + geom_histogram(aes(months), bins = 30, fill="#d2aa47", color = '#163B8B', size = .8, alpha = 0.3) +
scale_x_continuous(breaks = br)
I would like to display that number of months on top, thanks