Re: [Matplotlib-users] plotting from a dictionary

2008-04-03 Thread Pierre GM
Chris, Why wouldn't you try to use sorted on your dictionary, construct an array from the result of sorted, and get the corresponding columns ? >>>ddict={date(2008,01,01):10,date(2008,01,03):20,date(2008,01,02):30} >>>results=numpy.array(sorted(ddict.iteritems()),) >>>print results[:,0] >>>[2008

[Matplotlib-users] plotting from a dictionary

2008-04-03 Thread Chris Withers
Hey All, I have a dictionary that maps date to a count (in this case the number of false negatives from my spam filter) and I'm wondering how to best plot something that looks like, say: from datetime import date data = { date(2008,03,01):10, date(2008,03,02):15, date(2008,03,03):13, }