I got an issue if i want to add a legend in ggplot2 when using the next code:
ggplot() +
geom_point(data = select, aes(x = Date, y = Netto), colour = "red") +
geom_point(data = select, aes(x = Date, y = First), colour = "blue") +
geom_point(data = select, aes(x = Date, y = Second), colour = "black")
I got three different colors, but I can't find how to add a legend in this plot.