I have the following data in a pandas dataframe
date template score
0 20140605 0 0.138786
1 20140605 1 0.846441
2 20140605 2 0.766636
3 20140605 3 0.259632
4 20140605 4 0.497366
5 20140606 0 0.138139
6 20140606 1 0.845320
7 20140606 2 0.762876
8 20140606 3 0.261035
9 20140606 4 0.498010
For every day there will be 5 templates and each template will have a score.
I want to plot the date in the x axis and score in the y axis and a separate line graph for each template in the same figure.
Is it possible to do this using matplotlib?