Re: [Matplotlib-users] The return of Mac OS-X installers

2013-10-31 Thread Michael Droettboom
Github seems to be having trouble updating the website at the moment.  
The direct links to the installer files are:


https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.3.1/matplotlib-1.3.1-py2.7-python.org-macosx10.6.dmg

https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.3.1/matplotlib-1.3.1-py3.3-python.org-macosx10.6.dmg

Mike


On 10/31/2013 04:18 PM, Michael Droettboom wrote:
Courtesy of Matthew Brett, we now have Mac OS X installers again. 
These are designed to work with the python.org distribution, and 
include all dependencies.


They are available here:

http://matplotlib.org/downloads

Please let us know how you fare!

Mike
--
_
|\/|o _|_  _. _ | | \.__  __|__|_|_  _  _ ._ _
|  ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | |

http://www.droettboom.com


--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk


___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users



--
   _
|\/|o _|_  _. _ | | \.__  __|__|_|_  _  _ ._ _
|  ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | |

http://www.droettboom.com

--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] The return of Mac OS-X installers

2013-10-31 Thread Michael Droettboom
Courtesy of Matthew Brett, we now have Mac OS X installers again. These 
are designed to work with the python.org distribution, and include all 
dependencies.


They are available here:

http://matplotlib.org/downloads

Please let us know how you fare!

Mike

--
   _
|\/|o _|_  _. _ | | \.__  __|__|_|_  _  _ ._ _
|  ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | |

http://www.droettboom.com

--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] matplot3d: add_collection3d: Turn off baseline?

2013-10-31 Thread Benjamin Root
On Thu, Oct 31, 2013 at 9:43 AM, Guido Avvisati wrote:

> Benjamin Root  writes:
>
> >
> >
> > On Tue, Nov 20, 2012 at 8:12 PM, Stephen Gibson  fcv4sgi5zeuqrrorzv6...@public.gmane.org> wrote:
> >
> > Ok. Adding an NaN as the last data point did not help.
> > However, I notice that the return path is two segments that go through
> (0,0).
> > i.e. the baseline (or return) path may actually start/finish at (0,0)
> > The attached image shows my data offset in y-direction by +1. The end
> points
> > have been set to y=0.5.  The baseline (or return path) is the line
> segment
> that
> > starts at the first data point, passes through (x=0,y=0), and ends at the
> last
> > data point.
> > Steve.
> >
> >
> > Actually, this might be related to a bug that was pointed out to me a
> while back that I just could not figure out.  Having this example might
> help
> in narrowing down the cause.  Essentially, the (0,0) vertex was being added
> even when it shouldn't have been.  The key difference in this example is
> that zdir='y' is used, which causes the (0,0) vertex to refer to the x,z
> coordinate.  Interesting...I will have to investigate further.Ben Root
> >
> >
> >
> >
> >
> --
> 
> > Monitor your physical, virtual and cloud infrastructure from a single
> > web console. Get in-depth insight into apps, servers, databases, vmware,
> > SAP, cloud infrastructure, etc. Download 30-day Free Trial.
> > Pricing starts from $795 for 25 servers or applications!
> > http://p.sf.net/sfu/zoho_dev2dev_nov
> >
> > ___
> > Matplotlib-users mailing list
> > Matplotlib-users@...
> > https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> >
>
>
> Hi,
>
> I have exactly the same problem described here. Is there any solution to
> turn off the baseline in the polycollection?
>
> Cheers,
> Guido
>
>
>
There was a pull request that was put together about 6 months ago that I
think fixed the problem, IIRC, but it broke the API and the submitter
eventually retracted the PR because it didn't seem like the right solution.
The problem is extremely nuanced and there is no clear solution,
unfortunately. The general idea is that the path codes are not being stored
with the vertices because the underlying object holding that data is a Path
(so the 3D vertices are stored separately, and as such, the list of
vertices diverges from the list of path codes). Perhaps, if there was a way
to make Path objects be able to hold 3D vertices, we might be able to solve
this issue once and for all?

Ben Root
--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] matplot3d: add_collection3d: Turn off baseline?

2013-10-31 Thread Guido Avvisati
Benjamin Root  writes:

> 
> 
> On Tue, Nov 20, 2012 at 8:12 PM, Stephen Gibson  wrote:
> 
> Ok. Adding an NaN as the last data point did not help.
> However, I notice that the return path is two segments that go through 
(0,0).
> i.e. the baseline (or return) path may actually start/finish at (0,0)
> The attached image shows my data offset in y-direction by +1. The end 
points
> have been set to y=0.5.  The baseline (or return path) is the line segment 
that
> starts at the first data point, passes through (x=0,y=0), and ends at the 
last
> data point.
> Steve.
> 
> 
> Actually, this might be related to a bug that was pointed out to me a 
while back that I just could not figure out.  Having this example might help 
in narrowing down the cause.  Essentially, the (0,0) vertex was being added 
even when it shouldn't have been.  The key difference in this example is 
that zdir='y' is used, which causes the (0,0) vertex to refer to the x,z 
coordinate.  Interesting...I will have to investigate further.Ben Root
> 
> 
> 
> 
> --

> Monitor your physical, virtual and cloud infrastructure from a single
> web console. Get in-depth insight into apps, servers, databases, vmware,
> SAP, cloud infrastructure, etc. Download 30-day Free Trial.
> Pricing starts from $795 for 25 servers or applications!
> http://p.sf.net/sfu/zoho_dev2dev_nov
> 
> ___
> Matplotlib-users mailing list
> Matplotlib-users@...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 


Hi,

I have exactly the same problem described here. Is there any solution to 
turn off the baseline in the polycollection?

Cheers,
Guido



--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] pick event for images

2013-10-31 Thread Nils Wagner
Hi Joe,

Just now I installed your package mpldatacursor and run the example
image_example.py.
Awesome !
Is there a chance to integrate it into matplotlib ?

Nils



On Wed, Oct 30, 2013 at 5:58 PM, Joe Kington  wrote:

>
> On Oct 30, 2013 9:43 AM, "Nils Wagner"  wrote:
> >
> > Hi all,
> >
> > How can I retrieve the corresponding "color value" in percent, when I
> click on the image ?
> >
>
> You have to jump through a couple of hoops.
>
> Have a look at the _coords2index function in pick_info.py for
> mpldatacursor.
> https://github.com/joferkington/mpldatacursor/blob/master/mpldatacursor/pick_info.py
>
> Also, mpldatacursor might be useful for what you're doing. Not to plug my
> own project too much, but it does exactly this, among other things.
>
> Hope that helps!
> -Joe
>
> > fig = plt.figure()
> > ax  = fig.add_subplot(111)
> > cax = ax.imshow(col[:,::2],
> interpolation='nearest',extent=[0.5,20.5,0.5,2
> > 0.5],alpha=1,picker=5)
> >
> > fig.canvas.mpl_connect('pick_event', onpick)
> >
> > def onpick(event):
> >  ...
> >
> >
> > Nils
> >
> >
> >
> --
> > Android is increasing in popularity, but the open development platform
> that
> > developers love is also attractive to malware creators. Download this
> white
> > paper to learn more about secure code signing practices that can help
> keep
> > Android apps secure.
> >
> http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
> > ___
> > Matplotlib-users mailing list
> > Matplotlib-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> >
>
>
--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users