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 =
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
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
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
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
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.
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
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