I'm encountering some matplotlib behaviour that I do not understand. I have a daframe:
august.head()
value
config name
low max velocity -0.000145
medium max velocity -0.000165
reference -0.000198
high max velocity -0.000192
When I plot this dataframe using
plt.plot(august)
I get the following plot:
My data seems plotted chaotically and the blue line 'comes back to a previous x value' (sorry, that's the best I can do for a description of my problem)
I would like to see my data plotted with plt.plot(august) just as when I plot it using
august.plot()
Which gives me a good, ordered graph:
Any ideas?
Thanks