I want to write a code in python (using pandas and matplotlib) to illustrate many trends in a single window. My initial dataset is something like this:
- NO. Year Position Year Position Year Position
1 2000 1 2002 2 2005 3
2 1999 2 2003 2 2006 3
...
40 1999 3 2005 2 2007 1
In fact, each data point (1,2,3...40) has different positions between 1-3 in different years. I just want to show the trend of their positions. Probably it should be a simple line chart for each of them. And I want to show all of the charts in a single window so that we can compare the results of different data points' trends. Any idea where should I start? Thanks in advance for your help.