>       2. I need to have the X axis of the boxplot be dates. There doesn't
> seem to be an easy way to do that.

Use the "position" keyword, as a list of date ordinals (output of date2num). 
Then, use
gca().xaxis_date(tz)
where tz is your current timezone (you can use None, that's easier).
Et voila.
You probably gonna have to play with tick rotation and date formatting, but 
that's another story

Using the boxplot_demo
#...
# multiple box plots on one figure
figure()
positions = [732659, 732660]
boxplot(data, positions=positions)
gca().xaxis_date(None)

-------------------------------------------------------------------------
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