I am trying to plot a line graph that is going to be fluctuating according to the column values.
My pandas dataframe has 10 columns which represent each day (names of my columns are day1, day2, ..., day10) and 3 rows which each one shows one single feature that I want to look at their changes daily(percentage of daily sales of potato, onion and strawberry).
I have already tried to plot it with
timeseries.plot()
pyplot.show()
what I get is : http://img4.imagetitan.com/img.php?image=19_problem.png
("Feature" in this pic is the index's column name and instead of 0,1,2 as row names I have Potato, Onion and Strawbery)
What I want to achieve for each row separately is: http://img4.imagetitan.com/img.php?image=19_question.png
I would be so happy if someone can help me with this. Thanks in advance
