I am trying to make a bar chart to show my dataset. There is a issue about the scale of the bar chart, here is my plot:
Here is part of my data
I don't know why the biggest number is on the bottom and the small number is on the top. How can I fix it?
Here are the codes:
library(ggplot2)
ggplot(dat1) + geom_bar(aes(dat1$X...Country,dat1$X2017),stat = "identity")