I'm trying to reverse the values for my Y-axis. I basically want the Y-axis to decrease as you go up so instead of there being 24, it should be 16. How can I do this?
ggplot(data=data_diff, aes(Sum.of.Diff, Sum.of.Against.Total) + geom_point(alpha=1) + ggtitle("Data Diff") + geom_label_repel(data=subset(data_diff, Sum.of.Against.Total> 0 | Sum.of.Diff > 0 | Sum.of.Diff < 0), aes(label=Name), box.padding = 0.5, point.padding = .11, segment.color = 'black') + xlab("Sum of Diff") + ylab("Sum of Against Stats Total") example plot:

Here is my data set:
Name Sum.of.Against.Total Sum.of.Diff 1 Aurorus 26.00 185.66 2 Parasect 25.00 155.66 3 Leavanny 25.00 115.66 4 Abomasnow 25.00 115.66 5 Frosmoth 24.50 115.66 6 Rhyperior 24.25 115.66 7 Golem 24.25 115.66 8 Exeggutor 24.00 115.66 9 Weavile 23.50 115.66 10 Flapple 23.25 115.66 11 Appletun 23.25 115.66 12 Alolan Exeggutor 23.25 82.66 13 Tyranitar 23.00 70.66 Thank you! B


reverse? Please share your data. You can paste the output ofdput(data_diff)in your question. Please go through the tour in Stack Overflow and read stackoverflow.com/help/how-to-askscale_y_reverse?dput, as I showed above