Re: [Matplotlib-users] Install under Win 7

2014-04-11 Thread Paul Hobson
You're on windows, so that last command is just "activate mpl33" On Fri, Apr 11, 2014 at 7:05 PM, Paul Hobson wrote: > You should be using conda to install matplotlib: > > conda create --name mpl33 matplotlib python=3.3 ipython-notebok > source activate mpl33 > > > On Fri, Apr 11, 2014 at 8:11

Re: [Matplotlib-users] Install under Win 7

2014-04-11 Thread Paul Hobson
You should be using conda to install matplotlib: conda create --name mpl33 matplotlib python=3.3 ipython-notebok source activate mpl33 On Fri, Apr 11, 2014 at 8:11 AM, grivet wrote: > Under Win7pro, I have tried to install matplotlib by running either > matplotlib-1.3.0.win32-py3.3.exe or > ma

Re: [Matplotlib-users] Variable size markers legend formatting

2014-04-11 Thread Paul Hobson
Hey Adam, I wouldn't make a circle, instead use a Line2D artist (accessible from pyplot) with they same (base) symbology as your scatter plot. It has pretty much the same call signature as ax.plot -paul On Fri, Apr 11, 2014 at 9:35 AM, Sterling Smith wrote: > Adam, > > I agree that the Circle

Re: [Matplotlib-users] Variable size markers legend formatting

2014-04-11 Thread Sterling Smith
Adam, I agree that the Circle ended up with a rectangle in the legend, which I wouldn't think of as the expected response. Would the following work for your purposes? figure() p,=plot(0,0,marker='o',ls='',color='red') legend([p], ["Red Rectangle"],numpoints=1) p.remove() draw() -Sterling On

Re: [Matplotlib-users] possible documentation mistake in errorbar (mpl 1.1.1rc)

2014-04-11 Thread Sterling Smith
I can confirm the inconsistency between behavior and documentation for 1.3.1. The errorbar line gets the color of the line, not the marker. Probably you should file a bug report on github. -Sterling On Apr 11, 2014, at 7:50AM, Oliver wrote: > I apologize if this has been fixed already, I can

[Matplotlib-users] Install under Win 7

2014-04-11 Thread grivet
Under Win7pro, I have tried to install matplotlib by running either matplotlib-1.3.0.win32-py3.3.exe or matplotlib-1.3.1.win32-py3.3.exe. In each case, the installer tells pythion-3.3 is not in the registry (although Anaconda was successfully installed previousle). A pop-up window then opens, as

Re: [Matplotlib-users] Variable size markers legend formatting

2014-04-11 Thread Adam Hughes
Hi Paul, I tried out the legend proxy artist, and it works for rectangles in the legend, but I can't seem to get a Circle to appear in the legend, which I presume should be: p = Circle((0, 0), fc="r") legend([p], ["Red Rectangle"]) On Wed, Apr 9, 2014 at 2:20 PM, Adam Hughes wrote: > Thanks P

[Matplotlib-users] possible documentation mistake in errorbar (mpl 1.1.1rc)

2014-04-11 Thread Oliver
I apologize if this has been fixed already, I can only check different versions at home. However, the documentation of mpl 1.3.1. has the same information. So unless the code changed to reflect the documentation, this is st