I have data that includes the number of countries in each region per year in a data set. I have used the below code to plot a bar chart but I would like it to plot the numbers for each year but not sure how.
region_year <- data_na_removed%>%
group_by(Region, Year)%>%
summarise(Number = n())%>%
arrange(desc(Number))
region_year%>%
ggplot() +
geom_col(aes(x = Region, y = Number), fill='lightblue') +
labs(title = 'The Number of countries in each Region in 2014') +
ylab('Number') + xlab('Region')
'''