I have the following plot:
And since the y values are quite different from one another, I think it'd be more useful to show each value on top of each bar rather than putting the y scale on the left.
Here's my code so far:
geom_histogram(binwidth = 0.5, color="white", fill="turquoise") +
labs(x = NULL, y = "Frequência de Faxinas")+
scale_x_continuous(breaks = c(1:12), labels = c("Jan",
"Fev", "Mar", "Abr", "Mai",
"Jun", "Jul", "Ago", "Set","Out",
"Nov","Dez"))
I'm looking at the ggplot cheat sheet but I'm not sure what I should be looking for to find this information. It'd be really helpful if anyone could shed some light.