I read a case with the same title in stackoverflow, but it did not solve my questions. I have a data frame like this:
ID T1 T2 T3 T4....T10
1 40 50 50 70....40
2 30 60 29 50....NA
3 59 80 NA NA....NA
4 80 90 90 NA....NA
I want to have just one graph putting T1, T2, T3...T10 on the x-axis, and the scores in T1, T2...T10 on the y-axis. Each id forms a single line with the changing of the scores. I used add=TRUE for each one, but it is still cumbersome because I have more than 300 IDs. How can I do it quickly in plot or even ggplot?
Thanks!