I'm trying to do a % scale to my ggplot in R, but it comes out as over 1500%, how do I make it on a 100% scale?
At the moment it looks like this:
ggplot(numbers,aes(var)) + geom_bar(position="dodge",fill="darkgreen")+
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +