>
>
>> Now, how do I get two boxplots on the same plot?
>
> Well, just draw two axes.
> Simson, now that you're more experienced with matplotlib, you  
> should really
> start speaking python to it.

I'd love to speak python to it.  But it's harder when all of the  
examples are in matlab...

>
> fig = figure()
> ax1 = fig.add_subplot(121)
> ax2=fig.add_subplot(122)

Hm. I'll need to figure out why these two subplots appear on the same  
axis.

BTW, this whole subplot(ijk)  instead of subplot(i,j,k) notation is  
really, really confusing to me...


>
> ax1.boxplot([set1, set2],positions=[732659,732660])
> ax2.boxplot([set2, set1],positions=[732659,732660])
> ax1.set_xticklabels([num2date(x).strftime(timefmt) for x in  
> ax1.get_xticks()])
> ax2.set_xticklabels([num2date(x).strftime(timefmt) for x in  
> ax2.get_xticks()])
>
>


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