Re: [Matplotlib-users] PyNio

2014-07-04 Thread josef . pktd
On Fri, Jul 4, 2014 at 10:07 AM, Dino Bektešević ljet...@gmail.com wrote: Hello dydy, If you've never done programing in python I would recommend a book dive into python any version will do but the latest one is 3 I think. Asking this questions in tutor-requ...@python.org will probably get

Re: [Matplotlib-users] DistributionChart equivalent?

2013-07-08 Thread josef . pktd
On Mon, Jul 8, 2013 at 4:36 PM, Benjamin Root ben.r...@ou.edu wrote: This looks very similar to something Tony Yu made once. Check out this thread: http://matplotlib.1069221.n5.nabble.com/Combination-of-a-box-plot-and-a-histogram-td25313.html#a25319 Note that Tony now has some sort of

Re: [Matplotlib-users] Feedback on an implementation of a matlab-ish datacursor

2013-03-13 Thread josef . pktd
On Tue, Mar 12, 2013 at 11:58 PM, Joe Kington joferking...@gmail.com wrote: I recently got around to polishing up a snippet I've been using for quite awhile. https://github.com/joferkington/mpldatacursor/ and I was hoping to get some feeding on the current implementation. mpldatacursor

Re: [Matplotlib-users] How to make column scatter plots?

2013-01-21 Thread josef . pktd
On Mon, Jan 21, 2013 at 5:01 AM, cnorn ch.n...@gmail.com wrote: Are there any way to make column scatter plots with matplotlib. They are also called beeswarm plot. plotSpread is implemented in matlab, which seems to do the job, but I can't find it in matplotlib. somewhat similar, with random

Re: [Matplotlib-users] How to make column scatter plots?

2013-01-21 Thread josef . pktd
On Mon, Jan 21, 2013 at 10:12 PM, josef.p...@gmail.com wrote: On Mon, Jan 21, 2013 at 5:01 AM, cnorn ch.n...@gmail.com wrote: Are there any way to make column scatter plots with matplotlib. They are also called beeswarm plot. plotSpread is implemented in matlab, which seems to do the job, but

Re: [Matplotlib-users] default data sets for matplotlib?

2012-09-26 Thread josef . pktd
On Wed, Sep 26, 2012 at 9:33 AM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Sep 26, 2012 at 9:10 AM, Michael Droettboom md...@stsci.edu wrote: On 09/26/2012 12:28 AM, josef.p...@gmail.com wrote: On Wed, Sep 26, 2012 at 12:05 AM, Paul Tremblay paulhtremb...@gmail.com wrote: In R, there

Re: [Matplotlib-users] default data sets for matplotlib?

2012-09-25 Thread josef . pktd
On Wed, Sep 26, 2012 at 12:05 AM, Paul Tremblay paulhtremb...@gmail.com wrote: In R, there are many default data sets one can use to both illustrate code and explore the scripting language. Instead of having to fake data, one can pull from meaningful data sets, created in the real world. For

[Matplotlib-users] plt.close(fig) error in python 3.2

2012-02-29 Thread josef . pktd
Sorry for reporting this here, it's the only way for matplotlib I'm signed up for. I'm testing scikits statsmodels on Python 3.2 plt.close(fig) in the graphics tests raises an error, python 3.2, matplotlib 1.2.x from Gohlke for Win 64, nose 1.0.0 File

Re: [Matplotlib-users] plt.close(fig) error in python 3.2

2012-02-29 Thread josef . pktd
On Wed, Feb 29, 2012 at 1:46 PM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Feb 29, 2012 at 7:32 AM, josef.p...@gmail.com wrote: Sorry for reporting this here, it's the only way for matplotlib I'm signed up for. I'm testing scikits statsmodels on Python 3.2 plt.close(fig) in the

Re: [Matplotlib-users] plt.close(fig) error in python 3.2

2012-02-29 Thread josef . pktd
On Wed, Feb 29, 2012 at 2:09 PM, Skipper Seabold jsseab...@gmail.com wrote: On Wed, Feb 29, 2012 at 2:02 PM,  josef.p...@gmail.com wrote: snip I'm not able to build matplotlib myself. If you're interested, I've been able to build on windows since Christophe provides the dependencies by

[Matplotlib-users] Fwd: Matplotlib gallery

2012-02-23 Thread josef . pktd
I will never get use to reply-all -- Forwarded message -- From: josef.p...@gmail.com Date: Thu, Feb 23, 2012 at 11:31 AM Subject: Re: [Matplotlib-users] Matplotlib gallery To: Nicolas Rougier nicolas.roug...@inria.fr On Thu, Feb 23, 2012 at 11:24 AM, Nicolas Rougier

Re: [Matplotlib-users] histogram plots color range

2012-01-27 Thread josef . pktd
On Fri, Jan 27, 2012 at 12:18 PM, Tony Yu tsy...@gmail.com wrote: On Fri, Jan 27, 2012 at 11:27 AM, nahren manuel meetnah...@yahoo.com wrote: Hello , I have a two dimensional array, 40X20(rowsXcolumns). Each of the 40 rows themselves hold values of the bins of a distribution (which is not

[Matplotlib-users] instance check, finding figure elements

2011-10-15 Thread josef . pktd
I'm building plots in stages using several different functions. Since the figure contains all information, I don't hand handles to individual elements around. What's the best way to check for a specific plot element? using isinstance, or are there specific attributes that could be checked? For

Re: [Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread josef . pktd
On Tue, Jun 21, 2011 at 8:47 AM, Paul Menzel paulepan...@users.sourceforge.net wrote: Dear Matplotlib folks, I want to plot all paths of a simple random walk and wrote the following recursive program based on the Path tutorial [1]. import matplotlib.pyplot as plt from

Re: [Matplotlib-users] plotting all paths of a simple random walk

2011-06-21 Thread josef . pktd
On Tue, Jun 21, 2011 at 5:25 PM, Paul Menzel paulepan...@users.sourceforge.net wrote: Am Dienstag, den 21.06.2011, 09:43 -0400 schrieb josef.p...@gmail.com: On Tue, Jun 21, 2011 at 8:47 AM, Paul Menzel wrote: I want to plot all paths of a simple random walk and wrote the following recursive