I would like to draw a time-plot using the matplotlib.dates module. From the tutorial, I know how to set regular interval date like the following:
ax.xaxis.set_major_locator(DayLocator())
ax.xaxis.set_major_formatter(DateFormatter("%Y-%m"))
ax.xaxis.set_minor_...
However, in my data there are some months missing. My xaxis date is more like : Jan, Feb, May, Jul, Sep, Oct, Sep... no pattern is formed...
How can I deal with such situation?.

plot(times, values), like that? sorry if not i am not getting your point...