from pandas import *
import datetime
DataFrame([1,1], index = [ datetime.datetime(2012,1,1), datetime.datetime(2012,9,1) ] ).plot()
x軸が読み取れないプロットを提供します。tools\plotting.py
その理由は、condition
(autofmt を決定する) が false であるためだと思います。
condition = (not self._use_dynamic_x
and df.index.is_all_dates
and not self.subplots
or (self.subplots and self.sharex))
self._use_dynamic_x()
最初の行は代わりにすべきではありませんか?