[Matplotlib-users] plotting two graphs, overlay not defined for all x

2015-05-30 Thread peter
hi, ive got a graph which should be overlayed with something, but the overlay graph isnt defined for all x values. for example, overlay goes from x=1 to 1=10, then pauses for 100 and then continues with 10 values. how do you do that? greetings

Re: [Matplotlib-users] Using blit=True in matplotlib.animation

2015-05-30 Thread Thomas Caswell
Blitting not working for the osx backend is a long standing issue due to differences between what is allowed in the different gui frame works. You have to change the backend via `use` before you import pyplot. If you are still getting the error it is likely you tried to change the backend

[Matplotlib-users] Rabinovich...

2015-05-30 Thread Prahas David Nafissian
Hello, My latest fractal music video, made with MatPlotLib. Enjoy! --Prahas https://www.youtube.com/watch?v=kh6ZLvpWr5kfeature=youtu.be -- ___ Matplotlib-users mailing list

Re: [Matplotlib-users] plotting two graphs, overlay not defined for all x

2015-05-30 Thread Joy merwin monteiro
You could define the overlay data for the whole length and mask out the irrelevant part using numpy.ma. You could also just plot the two parts separately using the appropriate length of the x coordinate. Xa = range (1,10) Xb = range (100, 110) plot (Xa, data1) plot (Xb, data2) On 31 May 2015

[Matplotlib-users] Using blit=True in matplotlib.animation

2015-05-30 Thread Peter Rowat
I’m on OS X, trying to write a multi-slider-controlled animation. If I have blit=True in the call to matplotlib.animation, I get this message matplotlib.animation.BackendError: The current backend is 'MacOSX' and may go into an infinite loop with blit turned on. Either turn off blit or use an

Re: [Matplotlib-users] cx_freeze-ing

2015-05-30 Thread cph
I fixed this problem by including the following line in my source code file: from matplotlib.backends import backend_tkagg -- View this message in context: http://matplotlib.1069221.n5.nabble.com/cx-freeze-ing-tp41780p45639.html Sent from the matplotlib - users mailing list archive at

[Matplotlib-users] Fwd: Error on gridspec.py

2015-05-30 Thread Thomas Caswell
Jan, Please keep discussions on the list. See below for forwarded email -- Forwarded message - From: Albrecht, Jan jan.albre...@enas.fraunhofer.de Date: Tue, May 26, 2015 at 2:58 AM Subject: AW: [Matplotlib-users] Error on gridspec.py To: Thomas Caswell tcasw...@gmail.com