Re: [Matplotlib-users] box plot on noisy data

2008-09-12 Thread Eric Wertman
>> import pylab as pb >> vals = [ [1,2,3,4,5], [10,20,30,40]] >> pb.boxplot( vals) >> pb.show() >> >> This gives: >> Traceback (most recent call last): ... >> ValueError: setting an array element with a sequence. I had this problem just recently... It wasn't so much the box plot as the numpy array

Re: [Matplotlib-users] Multiple column legends

2008-09-09 Thread Eric Wertman
On Tue, Sep 9, 2008 at 9:03 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > You're right: multi-column legends aren't implemented. > > There have been a number of points raised lately around the layout of > legends (such as baseline alignment), that are starting to add up to a > push for a (par

Re: [Matplotlib-users] pylab.boxplot

2008-09-04 Thread Eric Wertman
I'm using 0.98.3 as well... I get a dictionary too. Should have backed up another step and checked that, I just iterated over the return and got the keys. Thanks for the help. On Thu, Sep 4, 2008 at 2:25 PM, Ryan May <[EMAIL PROTECTED]> wrote: > Eric Wertman wrote: >> >&

[Matplotlib-users] pylab.boxplot

2008-09-04 Thread Eric Wertman
Hi Everyone.. the docs for boxplot say : Returns a list of the :class:`matplotlib.lines.Line2D` instances added. It seems to be returning a list of strings rather than a list of handles... What's the easiest way for me to get the handles of those objects, with only the names? It's giving me this