hi I am trying to personalize the colors of the geom_line() graph but every time I add the aes(color = 'green','blue')
argument my graph becomes one straight vertical line with two colors (not green and blue but the default blue and red labelled green and blue)
my data is esentially two insurance groups and I am comparing their rates of coverage through a certain time period.
ggplot(data = mydata aes(x = group, y = rate, group = insurance)) + geom_line(aes(color = insurance)) + geom_point()
any help is greatly appreciated.