I\'m pulling my hair to display a series with matplotlib.
I\'m working with python 2.7. I have a pandas Dataframe with dates. I converted dates to datetime and I\'m
I faced a similar issue. You could try this:
df2bis.set_index('dateObs', inplace=True) df2bis.index = pd.to_datetime(df2bis.index) df2bis.plot()