How can I reorder the values rising at the y axis using ggplot2 as below?
What I have done so far:
install.packages("tidyverse")
library(tidyverse)
Deutscher_Maschinenbau
ggplot(Deutscher_Maschinenbau,
aes(x = Jahr))+
geom_point(aes(y = Import, color = "1"), size = 5)+
geom_point(aes(y = Export, color = "2"), size = 5)
I'm sure this is very simple, but I can't find any examples out there.
Many, many thanks for your help!