This is the code I am using:
ggplot(data, aes(x = Date1, group=1)) + 
  geom_line(aes(y = Wet, colour = "Wet")) + 
  geom_line(aes(y = Dry, colour = "Dry"))
When I use the function size, the lines are too thick and their width is identical from size=0.1 to size=10 or more. Is there a way to control the size of the line?
Dummy data:
Date         Wet    Dry
July        5.65    4.88
September   5.38    3.93
October     4.73    2.42
