ggplot(data=data2006.all, aes(x = Month,y=Cancelled)) + geom_histogram(stat="identity", fill ="Brown") + ggplot2::labs(title ="2006 Flight cancellation")
This is the code I used. May I know how do I add the number of cancellations for each bar on the plot? thank you.