Hello everyone,
I'm wondering if it's possible to have a matplotlib graph online ? I mean
zoom drag and so on on a plot?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
Hi all,
Shocked by news of John Hunter's untimely severe health problems and now
death, I have been thinking about what we could do as a community to 1)
fuel matplotlib to further heights and 2) give everyone, but especially
John's family, some appreciation for how wide, and ongoing, his impact
So I forked then cloned huge Basemap repository with idea to test latest code
README file says it needs geos library, which README suggest:
nmake /f makefile.vc MSVC_VER=1500
However, error is inevitable almost always and this time Google
suggests that MS does not support C-99 (can't find intt
Le 30 août 2012 à 10:04, Fabien Lafont a écrit :
> Hello everyone,
>
> I'm wondering if it's possible to have a matplotlib graph online ? I mean
> zoom drag and so on on a plot?
Hi Fabien,
http://code.google.com/p/mplh5canvas/
maybe ?
(haven't tried it myself)
--
Matthias
-
On 8/30/2012 2:25 AM, klo uo wrote:
> So I forked then cloned huge Basemap repository with idea to test latest code
>
> README file says it needs geos library, which README suggest:
>
>nmake /f makefile.vc MSVC_VER=1500
>
> However, error is inevitable almost always and this time Google
> sugge
Hello,
Do you know to change the size of the numbers under the axis?
fabien
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT ma
On Thu, Aug 30, 2012 at 05:50:18PM +0200, Fabien Lafont wrote:
> Hello,
>
> Do you know to change the size of the numbers under the axis?
>
import matplotlib
matplotlib.rcParams['axes.labelsize'] = 12.0
Hope this helps.
--
Damon McDougall
http://www.damon-is-a-geek.com
B2.39
Mathematics Instit
There is no effect...
2012/8/30 Damon McDougall
> On Thu, Aug 30, 2012 at 05:50:18PM +0200, Fabien Lafont wrote:
> > Hello,
> >
> > Do you know to change the size of the numbers under the axis?
> >
>
> import matplotlib
> matplotlib.rcParams['axes.labelsize'] = 12.0
>
> Hope this helps.
>
> --
>
On Thu, Aug 30, 2012 at 11:58 AM, Fabien Lafont wrote:
> There is no effect...
>
>
> 2012/8/30 Damon McDougall
>
>> On Thu, Aug 30, 2012 at 05:50:18PM +0200, Fabien Lafont wrote:
>> > Hello,
>> >
>> > Do you know to change the size of the numbers under the axis?
>> >
>>
>> import matplotlib
>> ma
Hi,
But how can I do it for every graph and without creating axis?
I've seen this example:
import numpy as npimport matplotlib.pyplot as plt
# plt.figure creates a matplotlib.figure.Figure instancefig =
plt.figure()rect = fig.patch # a rectangle
instancerect.set_facecolor('lightgoldenrodyellow
On Thu, Aug 30, 2012 at 12:53 PM, Fabien Lafont wrote:
> Hi,
>
> But how can I do it for every graph and without creating axis?
>
>
>
We just told you:
import matplotlib
matplotlib.rcParams['xticks.labelsize'] = 12.0
Whenever a plot is made, it obtains the defaults from the rcParams. Note,
if y
On Thu, Aug 30, 2012 at 12:04:48PM -0400, Benjamin Root wrote:
> On Thu, Aug 30, 2012 at 11:58 AM, Fabien Lafont
> wrote:
>
> > There is no effect...
> >
> >
> > 2012/8/30 Damon McDougall
> >
> >> On Thu, Aug 30, 2012 at 05:50:18PM +0200, Fabien Lafont wrote:
> >> > Hello,
> >> >
> >> > Do you k
I've tried also but it returns an error:
matplotlib.rcParams['xticks.labelsize'] = 12.0
File "C:\Python27\lib\site-packages\matplotlib\__init__.py", line 653, in
__setitem__
See rcParams.keys() for a list of valid parameters.' % (key,))
KeyError: 'xticks.labelsize is not a valid rc paramete
On Thu, Aug 30, 2012 at 07:06:14PM +0200, Fabien Lafont wrote:
> I've tried also but it returns an error:
>
> matplotlib.rcParams['xticks.labelsize'] = 12.0
> File "C:\Python27\lib\site-packages\matplotlib\__init__.py", line 653, in
> __setitem__
> See rcParams.keys() for a list of valid pa
Hello,
I want to insert an image in a plot, how can I do?
Fabien
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can
Thanks,
I've found the problem. I use xlabel("name of my axis", size= 30) after
matplotlib.rcParams['xtick.
labelsize'] = 12.0 and it cancel it! Is it possible to have a name on the
axe and matplotlib.rcParams['xticks.
labelsize'] = 12.0 ??
2012/8/30 Damon McDougall
> On Thu, Aug 30, 2012 a
On Thu, Aug 30, 2012 at 07:28:40PM +0200, Fabien Lafont wrote:
> Thanks,
>
> I've found the problem. I use xlabel("name of my axis", size= 30) after
> matplotlib.rcParams['xtick.
> labelsize'] = 12.0 and it cancel it! Is it possible to have a name on the
> axe and matplotlib.rcParams['xticks.
> l
I'm just trying to plot a graph and add a label to each axis of that graph
and change the labelsize of the ticks.
2012/8/30 Damon McDougall
> On Thu, Aug 30, 2012 at 07:28:40PM +0200, Fabien Lafont wrote:
> > Thanks,
> >
> > I've found the problem. I use xlabel("name of my axis", size= 30) after
On Thu, Aug 30, 2012 at 1:38 PM, Fabien Lafont wrote:
> I'm just trying to plot a graph and add a label to each axis of that graph
> and change the labelsize of the ticks.
>
>
Could you post your code? What you are describing shouldn't happen. Also,
which version of matplotlib are you using?
Be
I just create two vectors from a .txt file and I plot them.
I think I have the latest version of matplotlib. I have at least the
last version of python(x,y)
from pylab import*
import matplotlib
matplotlib.rcParams['xtick.labelsize'] = 20.0
B5= genfromtxt("2012-05-14_RC3D3D2C1_D2D1_m18T_18T_Vg32
Le jeudi 30 août 2012 à 19:48 +0200, Fabien Lafont a écrit :
> I just create two vectors from a .txt file and I plot them.
> I think I have the latest version of matplotlib. I have at least the
> last version of python(x,y)
>
>
> from pylab import*
>
> import matplotlib
> matplotlib.rcParams['xt
Actually I just want to do it on that plot not on all my future plot.
2012/8/30 Fabrice Silva :
> Le jeudi 30 août 2012 à 19:48 +0200, Fabien Lafont a écrit :
>> I just create two vectors from a .txt file and I plot them.
>> I think I have the latest version of matplotlib. I have at least the
>> l
On 30/08/2012 19:00, Fabien Lafont wrote:
> Actually I just want to do it on that plot not on all my future plot.
>
> 2012/8/30 Fabrice Silva :
>> Le jeudi 30 août 2012 à 19:48 +0200, Fabien Lafont a écrit :
>>> I just create two vectors from a .txt file and I plot them.
>>> I think I have the late
On Thu, Aug 30, 2012 at 5:44 PM, Christoph Gohlke wrote:
>
> Try to remove 'geos_c' from the list of libraries in setup.py. Works for me.
>
> -libraries=['geos_c','geos']))
> +libraries=['geos']))
Thanks, that was it. It builds fine a
There is imshow(), which will plot an array into the existing axes, as well
as figimage(), which will insert the image into the figure in general.
Each of these function have ways to control placement, particularly
figimage().
Without more information, I can't help much further.
Cheers!
Ben Root
2012/8/28 Sterling Smith :
> List,
>
> Consider the following script:
>
> import pylab
> pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='')
> pylab.plot(pylab.linspace(0,1,100),label='Test2',marker='o',ls='-')
> leg=pylab.legend(loc='best')
> line=leg.get_lines()
> line[0].set_color(
On Thu, Aug 30, 2012 at 3:26 PM, Goyo wrote:
> 2012/8/28 Sterling Smith :
> > List,
> >
> > Consider the following script:
> >
> > import pylab
> > pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='')
> > pylab.plot(pylab.linspace(0,1,100),label='Test2',marker='o',ls='-')
> > leg=pyl
On Aug 30, 2012, at 12:35PM, Benjamin Root wrote:
>
>
> On Thu, Aug 30, 2012 at 3:26 PM, Goyo wrote:
> 2012/8/28 Sterling Smith :
> > List,
> >
> > Consider the following script:
> >
> > import pylab
> > pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='')
> > pylab.plot(pylab.lin
Did you ever find the cause of this?
I found that the get_py2exe_datafiles() method didn't find those fonts but
even when I got the fonts manually I still had the same issue with
matplotlib's Font Manager not being able to find them.
On Thu, Nov 10, 2011 at 11:22 AM, Armando Serrano Lombillo <
a
29 matches
Mail list logo