[Matplotlib-users] matplotlib for python 2.3

2010-05-21 Thread Eian Vizzini
Hi, I would like a copy of matplotlib that is compatible with python 2.3. I searched all over the net and it is really difficult to find anything. Does anyone still have a copy? I believe it's version 0.87.3 or before. Thank you, Eian

[Matplotlib-users] qqplot

2010-05-21 Thread MONTAGU Thierry
hi all has anyone ever tried to make a quantile-quantile plot with pylab? is there any build in function named say qqplot available ? thanks Thierry -- ___ Matplotlib-users

Re: [Matplotlib-users] qqplot

2010-05-21 Thread PHobson
Thierry, You need either scipy or rpy2 (and R) to do this. I've attached some code below. Please keep in mind that I've written for the general case of having a censored data set, therefore I rely on masked arrays from numpy.ma and scipy.stats.mstats -- but I have apply the mask midway through

Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Sandy Ydnas
sorry but nothing from http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue working on Vista for Wings IDE do you use it for LInux? Sandy Date: Tue, 18 May 2010 18:14:11 -0400 From: alan.is...@gmail.com To:

Re: [Matplotlib-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Alan G Isaac
On 5/21/2010 12:35 PM, Sandy Ydnas wrote: nothing from http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue working on Vista for Wings IDE What if you ditch the IDE and just run the script? Alan Isaac

Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Sandy Ydnas
morever computer gets stuck for code from multiprocessing import Process from matplotlib.pyplot import plot, show def plot_graph(*args): for data in args: plot(data) show() p = Process(target=plot_graph, args=([1, 2, 3],)) p.start() print 'yay' print 'computation

[Matplotlib-users] updating an image plot

2010-05-21 Thread Chiara Caronna
Hi, I am trying to update the image plotted in a figure. From what I understood, this code should do the job: import pylab as p image=p.zeros((20,20)) p.ion() ax=p.imshow(image) p.draw() for i in range(10): print i p.ion() image[i,:]=i ax.set_array(image) p.draw() But the image is not

[Matplotlib-users] Scatterplots with colorscale?

2010-05-21 Thread Andreas Hilboll
Hi there, the attached figure shows a scatterplot, where the colors indicate the density of measurement points. Is there any way to do this with matplotlib? Thanks for your insight, Andreas. attachment:

Re: [Matplotlib-users] Scatterplots with colorscale?

2010-05-21 Thread Benjamin Root
Andreas, Check out hexbin(), it is the easiest way to do what you want. Ben Root On Fri, May 21, 2010 at 2:52 PM, Andreas Hilboll li...@hilboll.de wrote: Hi there, the attached figure shows a scatterplot, where the colors indicate the density of measurement points. Is there any way to do

Re: [Matplotlib-users] qqplot

2010-05-21 Thread Stan West
From: MONTAGU Thierry [mailto:thierry.mont...@cea.fr] Sent: Friday, May 21, 2010 09:37 has anyone ever tried to make a quantile-quantile plot with pylab? is there any build in function named say qqplot available ? For a plot comparing samples to a theoretical distribution (and if you don't

Re: [Matplotlib-users] Scatterplots with colorscale?

2010-05-21 Thread Benjamin Root
Andreas, With respect to the large PDF file, while hexbin() would help in that regards, if you need further improvement in filesize, there is a kwarg for some plotting functions: rasterized=True. You might need to use a svn checkout of matplotlib for it to work though, but I am dealing with the

Re: [Matplotlib-users] [matplotlib-devel] basemap domain changes on pyplot call

2010-05-21 Thread Jeff Whitaker
On 5/21/10 3:57 PM, Benjamin Root wrote: I did some more digging and I think I have a hypothesis for what is happening. There is only one main difference between a call to .drawstates() and .readshapefiles() with respect to loading and plotting data. .drawstates() loads *only* the line

Re: [Matplotlib-users] updating an image plot

2010-05-21 Thread Jae-Joon Lee
set_array method only update the underlying array, and no more. The problem is that, the first imshow results in clim=(0,0) and set_array does not change this. You may manually update the clim of the image, or you may explicitly call autoscale() after set_array. Regards, -JJ On Fri, May 21,