I'm calculating the daily mean with the standard deviation as a bar plot. My dataframe looks like this:
Ozone
2014-06-10 41.958586
2014-06-11 32.747222
2014-06-12 35.781250
2014-06-13 28.623264
2014-06-14 31.160764
2014-06-15 30.494444
2014-06-16 35.666667
[7 rows x 1 columns]
As you can see, the indexing row is nicely truncated to daily dates. When I try to plot this in a bar plot however, each of the seven bars has the full date followed by '00:00:00' underneath. This is probably matplotlib trying to be smart, but I can't figure out how to format the index so that only the daily date shows instead.
It looks like this:
2014-06-13 00:00:00
Do you have any suggestions on how to change this?