So basically, my data is like this:
1stCol 2ndCol 3rdCol
Week1 1 4
Week2 2 3
Week3 3 4
Week4 5 6
...
Week11 7 8
Week12 9 10
...
Till Week 52.
I used ggplot to plot this data:
ggplot(data, aes(b, c, colour = a)) + geom_line()
But the legends will be:
Week1 Week11 Week12... Week19 Then Week2 Week21...
But I want them be
Week1 Week2 Week3 Week4...
Is that possible?
And also, cause I have such a long list for legend, it's so hard to fit them in a jpg( I used ggsave to save it) how can I adjust to that?