[Matplotlib-users] Issue with mplot3d

2013-12-18 Thread Guillaume Gay
Hi all, The following code fails on my box (python3.3, linux Mint 15, latest matplotlib code from github): ```python import matplotlib as mpl from mpl_toolkits.mplot3d import Axes3D import numpy as np import matplotlib.pyplot as plt mpl.rcParams['legend.fontsize'] = 10 fig = plt.figure() ax =

Re: [Matplotlib-users] Issue with mplot3d (Not a bug)

2013-12-18 Thread Guillaume Gay
It appears I haden't properly updated the package, sorry for the noise. G. Le 18/12/2013 12:16, Guillaume Gay a écrit : > Hi all, > > The following code fails on my box (python3.3, linux Mint 15, latest > matplotlib code from github): > > ```python > impor

Re: [Matplotlib-users] who (F/OSS science) uses matplotlib?

2012-06-05 Thread Guillaume Gay
Le 05/06/2012 16:25, Tom Dimiduk a écrit : > Is any of this stuff I should be looking to upstream or split off into > the start of a scientific imaging library for python? Have you had a look at skimage https://github.com/scikits-image ? BTW I uses matplotlib (and the whole pylab suite) in my pro

Re: [Matplotlib-users] Slow imshow when zooming or panning with several synced subplots

2012-05-23 Thread Guillaume Gay
Le 23/05/2012 15:04, Sergi Pons Freixes a écrit : > On Wed, May 23, 2012 at 11:00 AM, Guillaume Gay > wrote: >> Hello >> >> >> What is the size of a single image file? If they are very big, it is >> better to do everything from processing to ploting at once fo

Re: [Matplotlib-users] Slow imshow when zooming or panning with several synced subplots

2012-05-23 Thread Guillaume Gay
Hello What is the size of a single image file? If they are very big, it is better to do everything from processing to ploting at once for each file. Le 23/05/2012 10:11, Sergi Pons Freixes a écrit : > I'm plotting several images at once, sharing axes, because I use it > for exploratory purpos

Re: [Matplotlib-users] variable data set plotting

2012-04-07 Thread Guillaume Gay
Hi Fransesco, This is possible indeed, from the doc: http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.plot: you can do this: a.plot(x1, y1, 'g^', x2, y2, 'g-') But I would rather set up a loop: for file in sys.arv[1:]: ... #read your data plt.

Re: [Matplotlib-users] Figure save hack

2012-03-16 Thread Guillaume Gay
Hi, I have been dreaming about this for a long time too, This would really be a nice feature. I often need to come back to the formatting of a plot, and its formatting only, without the need to really access the data (which I often end up calculating again!) Guillaume Le 16/03/2012 09:17, D

[Matplotlib-users] Move the content of a figure into a subplot of this figure.

2012-03-02 Thread Guillaume Gay
Hi list, I am trying to implement some GUI tools in matplotlib - more precisely a line profile tool and a contrast setter which I hope will be integrated to the skimage kit [see https://github.com/glyg/scikits-image/blob/master/skimage/io/_plugins/matplotlib_plugin.py]. Now here is my ques