Re: [Matplotlib-users] Matplotlib lag on windows seven

2013-01-21 Thread Fabien Lafont
I have installed MPL 1.2.0 but it's still laggy... 2013/1/18 Paul Hobson pmhob...@gmail.com On Thu, Jan 17, 2013 at 8:10 AM, Fabien Lafont lafont.fab...@gmail.comwrote: Thanks! I have:Qt4Agg 2013/1/17 Benjamin Root ben.r...@ou.edu On Thu, Jan 17, 2013 at 8:43 AM, Fabien Lafont

[Matplotlib-users] Matplotlib lag on windows seven

2013-01-17 Thread Fabien Lafont
Hello everyone, I've just changed my computer from a old core 2 duo on windows Xp to a intel Xeon with 12 Gb Ram. I've installed matplotlib but I plot a graph it's about 10 times slower than windows Xp to pan the axis or move the graph. Even if I'm plotting something very simple like that: from

Re: [Matplotlib-users] Matplotlib lag on windows seven

2013-01-17 Thread Fabien Lafont
What is a backend??? The version number? I'm using Matplotlib 1.1.1 2013/1/17 Michael Droettboom md...@stsci.edu Which backends are you using on each platform. A difference there is the most likely culprit. Mike On 01/17/2013 08:16 AM, Fabien Lafont wrote: Hello everyone, I've

Re: [Matplotlib-users] Matplotlib lag on windows seven

2013-01-17 Thread Fabien Lafont
Thanks! I have:Qt4Agg 2013/1/17 Benjamin Root ben.r...@ou.edu On Thu, Jan 17, 2013 at 8:43 AM, Fabien Lafont lafont.fab...@gmail.comwrote: What is a backend??? The version number? I'm using Matplotlib 1.1.1 from pylab import * get_backend() Ben Root

[Matplotlib-users] Is it possible to have different color for inner and outer face of a 3D plot?

2012-09-19 Thread Fabien Lafont
Actually I want to try to plot something like this picture: http://physics.aps.org/assets/d88621a594e78eea With a color for inside and another for outside. -- Live Security Virtual Conference Exclusive live event will

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-31 Thread Fabien Lafont
Hi, I think I was tired yesterday. matplotlib.rcParams['xtick.labelsize'] = 20.0 works perfectly also with xlabel(name, size= 30) Thanks all, Fabien 2012/8/30 Mark Lawrence breamore...@yahoo.co.uk: On 30/08/2012 19:00, Fabien Lafont wrote: Actually I just want to do it on that plot

[Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Hello, The question is in the title :) Cheers! 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 respond.

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Actually I had some problems to find the solution on the web. Finally I've used: matplotlib.rcParams['legend.fontsize'] = 25.0 and it works well Fabien 2012/8/31 Mark Lawrence breamore...@yahoo.co.uk On 31/08/2012 14:42, Fabien Lafont wrote: Hello, The question is in the title

[Matplotlib-users] [matplotlib-users] Embed plot in a website?

2012-08-30 Thread Fabien Lafont
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

[Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
There is no effect... 2012/8/30 Damon McDougall damon.mcdoug...@gmail.com 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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
(16). It looks so complicated. 2012/8/30 Benjamin Root ben.r...@ou.edu On Thu, Aug 30, 2012 at 11:58 AM, Fabien Lafont lafont.fab...@gmail.comwrote: There is no effect... 2012/8/30 Damon McDougall damon.mcdoug...@gmail.com On Thu, Aug 30, 2012 at 05:50:18PM +0200, Fabien Lafont wrote

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
parameter.See rcParams.keys() for a list of valid parameters.' 2012/8/30 Damon McDougall damon.mcdoug...@gmail.com On Thu, Aug 30, 2012 at 12:04:48PM -0400, Benjamin Root wrote: On Thu, Aug 30, 2012 at 11:58 AM, Fabien Lafont lafont.fab...@gmail.com wrote: There is no effect... 2012/8/30

[Matplotlib-users] How to insert an image in a plot?

2012-08-30 Thread Fabien Lafont
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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
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 damon.mcdoug...@gmail.com 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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
...@ou.edu: On Thu, Aug 30, 2012 at 1:38 PM, Fabien Lafont lafont.fab...@gmail.com 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

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-30 Thread Fabien Lafont
Actually I just want to do it on that plot not on all my future plot. 2012/8/30 Fabrice Silva si...@lma.cnrs-mrs.fr: 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

[Matplotlib-users] [matplotlib-users] How to switch colormaps

2012-07-20 Thread Fabien Lafont
Hello everyone, Is it possible to have automaticaly more than 3 colors when Iplot a graph? When I plot it put the first in blue the second in green the third in red and the fourth in blue again. I want to use more colors to differenciate the curves. Is it possible? Fabien

[Matplotlib-users] [matplotlib-users] How to plot digamma function (psi)

2012-07-10 Thread Fabien Lafont
Hello everyone, I try to plot the digamma function of (1/2 + 1/x) but I'm not sure that I'm plotting the good one. I've tried: special.polygamma(0, (1/2 + 1/x)) and special.polygamma(1, (1/2 + 1/x)) but I don't have the same result as with mathcad. I've tried to code it like that: def

Re: [Matplotlib-users] [matplotlib-users] How to plot digamma function (psi)

2012-07-10 Thread Fabien Lafont
Damon McDougall damon.mcdoug...@gmail.com On Tue, Jul 10, 2012 at 08:57:24AM -0400, Benjamin Root wrote: On Tue, Jul 10, 2012 at 7:05 AM, Damon McDougall damon.mcdoug...@gmail.comwrote: On Tue, Jul 10, 2012 at 12:27:59PM +0200, Fabien Lafont wrote: But It returns zero division error

[Matplotlib-users] [matplotlib-users] definition to show quikly a plot

2012-05-29 Thread Fabien Lafont
Hello everyone, I have a problem. I have to look at many plots. Usely I do it like that: from pylab import* X1 = genfromtxt(Myfile.dat, usecols =(0)) Y1 = genfromtxt(Myfile.dat, usecols =(1)) plot(X1,Y1, label =My curve) show() But the problem is when I have many plots I have to copy paste

Re: [Matplotlib-users] [matplotlib-users] definition to show quikly a plot

2012-05-29 Thread Fabien Lafont
Thx Francesco, it works great! What for the .T at the end of genfromtxt? 2012/5/29 Francesco Montesano franz.berges...@googlemail.com: Dear Fabien 2012/5/29 Fabien Lafont lafont.fab...@gmail.com: Hello everyone, I have a problem. I have to look at many plots. Usely I do it like

[Matplotlib-users] [matplotlib-users] How to clear a matplotlib graph in PyQt

2012-04-27 Thread Fabien Lafont
Hello everyone, I Have a problem. I have a graph inserted in a PyQt interface and I want to clear it (When I click on a button). I initialise the graph like that: class Graph(FigureCanvas): def __init__(self,parent): self.fig = Figure() self.ax = self.fig.add_subplot(111)

[Matplotlib-users] [matplotlib-users] Is it possible to set .pdf as defaut when saving an image?

2012-02-07 Thread Fabien Lafont
Is it possible to set the extension .pdf as defaut when I save an image using the matplotlib bar. My coworkers are always saving the image in png and it's really ugly! Thx, Fab -- Keep Your Developer Skills Current with

[Matplotlib-users] [matplotlib-users] Is it possible to show a fullscreen plot on windows?

2012-02-06 Thread Fabien Lafont
The question is inside the title... -- Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5,

[Matplotlib-users] [matplotlib-users] How connect axes on matplotlib subplots

2012-02-02 Thread Fabien Lafont
Hello! How can I zoom exactly on the same region on two different subplots at the same time. This option is enable when I use plotfile but not if I use plot, and subplots? Thx! Fabien -- Keep Your Developer Skills

Re: [Matplotlib-users] [matplotlib-users] How connect axes on matplotlib subplots

2012-02-02 Thread Fabien Lafont
Thx! 2012/2/2 Angus McMorland amcm...@gmail.com: On 2 February 2012 08:32, Fabien Lafont lafont.fab...@gmail.com wrote: Hello! How can I zoom exactly on the same region on two different subplots at the same time. This option is enable when I use plotfile but not if I use plot, and subplots

[Matplotlib-users] [matplotlib-users] Set the color of a plot in argument's function

2012-02-02 Thread Fabien Lafont
I don't manage to put the color of my plot in the argument' list function. Example: def function(color): plot(x,y,'.', color, label = this is my curve) function('r') even if I put function( 'r' ) it doesn't work. Any idea?

Re: [Matplotlib-users] [matplotlib-users] Set the color of a plot in argument's function

2012-02-02 Thread Fabien Lafont
Thanks Daryl, it works! 2012/2/2 Daryl Herzmann akrh...@iastate.edu: On Thu, Feb 2, 2012 at 8:52 AM, Fabien Lafont lafont.fab...@gmail.com wrote: I don't manage to put the color of my plot in the argument' list function. Example: def function(color):      plot(x,y,'.', color, label

[Matplotlib-users] How to keep only the x first terms of an array(numpy)?

2012-01-30 Thread Fabien Lafont
Hello, Do somebody knows how to keep only the x first terms of a numpy 1D array? like a = array([8,4,5,7,9]) function(a,2) [8,4] -- Try before you buy = See our experts in action! The most comprehensive online

[Matplotlib-users] [matplotlib-users] How to plot y vs x with some missing points in y vector?

2012-01-27 Thread Fabien Lafont
I want to plot something like: X(time)Ypoints 08 1 2 7 3 4 5 6 7 8 9 -- Try before you buy = See our experts in action! The most comprehensive online learning library for

Re: [Matplotlib-users] [matplotlib-users] How to plot y vs x with some missing points in y vector?

2012-01-27 Thread Fabien Lafont
Sorry, It's an awkward manipulation. I finish the mail 2012/1/27 Fabien Lafont lafont.fab...@gmail.com: I want to plot something like: X(time)        Ypoints 0                    8 1 2                   7 36 44 5 6 77 8

Re: [Matplotlib-users] [matplotlib-users] How to plot y vs x with some missing points in y vector?

2012-01-27 Thread Fabien Lafont
(nan) column2[i].remove(nan) to remove these points but it doesn't work 2012/1/27 Benjamin Root ben.r...@ou.edu: On Fri, Jan 27, 2012 at 9:52 AM, Fabien Lafont lafont.fab...@gmail.com wrote: Sorry, It's an awkward manipulation. I finish the mail 2012/1/27 Fabien Lafont lafont.fab

Re: [Matplotlib-users] [matplotlib-users] How to plot y vs x with some missing points in y vector?

2012-01-27 Thread Fabien Lafont
Thanks a lot, I'll try to remove the points using isnan() 2012/1/27 Fabrice Silva si...@lma.cnrs-mrs.fr: What about masked arrays ? http://docs.scipy.org/doc/numpy/reference/maskedarray.html -- Fabrice Silva --

[Matplotlib-users] [matplotlib-users] Twin yaxis and log scale in menubar

2012-01-25 Thread Fabien Lafont
Since I use twiny the button on the menu which allow color changing, log scale and so on, doesn't work. Why? What can I do? thx, Fabien -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive

[Matplotlib-users] [Matplotlib] Autoscale soesn't work

2012-01-17 Thread Fabien Lafont
I'm using an example from Sandro's Tosi book. I've just modified it to use random data instead cpu_datas. But the autoscale doesn't work even if I turn self.ax.set_autoscale_on(True). Do you have an Idea why? from pylab import * import random import sys from PyQt4 import QtGui import numpy

[Matplotlib-users] Autoscale doesn't work

2012-01-17 Thread Fabien Lafont
I'm using an example from Sandro's Tosi book. I've just modified it to use random data instead cpu_datas. But the autoscale doesn't work even if I turn self.ax.set_autoscale_on(True). Do you have an Idea why? from pylab import * import random import sys from PyQt4 import QtGui import numpy

[Matplotlib-users] [matplotlib] How to plot with plotfile?

2012-01-16 Thread Fabien Lafont
I try to plot some data directly from a file but without any sucess so far... from pylab import * plotfile(test.txt,(0,1)) My test.txt is in the same folder and it's just 1 2 3 5 2 6 4 5 8 It returns Traceback (most recent call last): File

[Matplotlib-users] [Python] How to show milliseconds with time?

2012-01-13 Thread Fabien Lafont
How can I show the milliseconds with the library time because time.time is precise (or at least show) up to 0.01 seconds and it seems it's not possible to print more than seconds... An idea? I use time.strftime(%H:%M:%S, gmtime(time.time())) Fabien

[Matplotlib-users] [Matplotlib] Best way to use the time

2012-01-12 Thread Fabien Lafont
I'm recording live data and I want to record at the same moment the time (to plot MyData Vs Time). Do you know the bast way to do it because it exists a lot of different classes for that? Fabien -- RSA(R) Conference 2012

[Matplotlib-users] How to plot Chebyshev polynolmials

2012-01-10 Thread Fabien Lafont
I'm trying to plot Chebyshev polynolmials using: numpy.polynomial.Chebyshev: import math from numpy import * from numpy import polynomial as pol from pylab import * from scipy import * from scipy import optimize import warnings warnings.simplefilter('ignore', np.RankWarning) test =

Re: [Matplotlib-users] How to plot Chebyshev polynolmials

2012-01-10 Thread Fabien Lafont
and y data to plot. from matplotlib import pyplot as plt import numpy as np x = np.linspace(-1.0,1.0) test = np.polynomial.Chebyshev((1,2,3)) y = test(x) plt.plot(x,y) plt.show() On Tue, Jan 10, 2012 at 9:10 AM, Fabien Lafont lafont.fab...@gmail.com wrote: I'm trying to plot Chebyshev

Re: [Matplotlib-users] [ploting data] Live data

2011-12-14 Thread Fabien Lafont
I prefer to use the multi-thread method beacause it's easier for me and my colaborators to have the entire acquisition process at the same place. Until then I use a simple one but I hope to use a more complex one in few weeks ( put different voltages on different devices then measure many voltages

[Matplotlib-users] Fit with Chebyshev Polynomials

2011-12-14 Thread Fabien Lafont
I have a basic problem (I think) I try to fit some data with this function http://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.Chebyshev.fit.html But it return an error: fit = chebyshev.fit(T,R,3) NameError: name 'chebyshev' is not defined I don't understand I've imported

Re: [Matplotlib-users] Fit with Chebyshev Polynomials

2011-12-14 Thread Fabien Lafont
Thx Seb! 2011/12/14 Benjamin Root ben.r...@ou.edu: On Wednesday, December 14, 2011, Fabien Lafont lafont.fab...@gmail.com wrote: I have a basic problem (I think) I try to fit some data with this function http://docs.scipy.org/doc/numpy/reference/generated

Re: [Matplotlib-users] [ploting data] Live data

2011-12-14 Thread Fabien Lafont
## ### End of Sample Code ### ## On 12/14/11 3:51 AM, Fabien Lafont wrote: I prefer to use the multi-thread method beacause it's easier for me and my colaborators to have the entire acquisition process at the same place. Until then I use a simple one but I hope to use a more

Re: [Matplotlib-users] [ploting data] Live data

2011-12-13 Thread Fabien Lafont
and tell the main event loop to process any queued events (like GUI actions/events) which will make your GUI more responsive. If that doesn't make sense let me know. -Dave On 12/12/11 9:16 AM, Fabien Lafont wrote: Hi David! Sorry about the delay I was abroad and without any way to connect

Re: [Matplotlib-users] [ploting data] Live data

2011-12-12 Thread Fabien Lafont
Hi David! Sorry about the delay I was abroad and without any way to connect to the internet. Thank you very much. I've tried to put the principal inside the timerEvent. It work but it lags. In fact I've set the interval of the Timer to 2 seconds because the principal loop takes roughly 2seconds

Re: [Matplotlib-users] [ploting data] Live data

2011-12-05 Thread Fabien Lafont
Thx all for your remarks, I can't understand why this code works (when I use the timer method): # -*- coding: utf-8 -*- Created on Fri Dec 02 17:10:22 2011 @author: lafont #!/usr/bin/env python from visa import * from pylab import * import sys from PyQt4 import QtGui import numpy as np from

[Matplotlib-users] [ploting data] Live data

2011-12-02 Thread Fabien Lafont
Hello everyone, I'm trying to plot live data extracting from remote devices (here it's simulated by get_info1 and 2 the result is always 0.8 or 0.9 I can't understand why it doesnt plot the graph at the end of the while loop. Does somebody has an idea? #!/usr/bin/env python from visa import *

Re: [Matplotlib-users] [ploting data] Live data

2011-12-02 Thread Fabien Lafont
are returning a list from your two get_info() functions? On Fri, Dec 2, 2011 at 8:13 AM, Fabien Lafont lafont.fab...@gmail.com wrote: Hello everyone, I'm trying to plot live data extracting from remote devices (here it's simulated by get_info1 and 2 the result is always 0.8 or 0.9 I can't

[Matplotlib-users] [timer] How it works?

2011-11-29 Thread Fabien Lafont
Hello everyone, I don't understand how works TimerBase. From matplotlib import backend_bases def write(x): print x backend_bases.TimerBase._timer_start backend_bases.TimerBase(1000,write(2)) It returns only 2 one time. Why it doesn't return 2 every second? Thx in advance,

[Matplotlib-users] Matplotlib graph autoscale

2011-11-17 Thread Fabien Lafont
Hello everyone, I've adapted a python code to plot real time data but I don't manage to have an auto-scale on my graph. I don't understand because I use set_autoscale_on(True)  Do you have an idea? Here is my simplified code: #!/usr/bin/env python #from visa import * from pylab import * #