> I want multiple boxes on a single plot, with one box per day. Take a
> look at how I've done it with just plot() and some error bars...

I'm still not sure I understand where the problem is:
You want several boxes in a plot ?
Something along the lines of what I already sent you ?
> boxplot([set1, set2],positions=[732659,732660])

Then once again, just construct of sequences of sets, a sequence of dates (as 
ordinals), and use something like:
boxplot(setsequence, positions=datesequence).

Alternatively, follow the boxplot_demo example.

Then, you'll have to use the trick I sent earlier
gca().set_xticklabels([num2date(x).strftime(fmt) for x in 
gca().get_xticklabels()])

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to