[Matplotlib-users] Scatter animations with colormaps

2013-07-27 Thread Magician
rker = 'o', s = 10.0, linewidth = 1.0, cmap = > my_cmap, c = []) > sct_anm = anm.FuncAnimation(fig, update_sct, fargs = (sct,), interval = 100, > frames = len(x)) > ax.set_xlim((-2.0, 2.0)) > ax.set_ylim((-2.0, 2.0)) > plt.show() Now I'm trying to set scatters' colors

Re: [Matplotlib-users] Baseline of TeX fonts

2013-01-29 Thread Magician
their baselines. I'd like to put plots on my TeX documents, so I want to output them as EPS. I also tried converting SVG into EPS with Inkscape, but the XY labels are disappeared on PDF-TeX documents from dvipdfm. Magician On 2013/01/29, at 10:48, Jae-Joon Lee wrote: > I guess you have tex

[Matplotlib-users] Baseline of TeX fonts

2013-01-20 Thread Magician
; - r'Plot 2 ($\alpha$)' -'Plot 3' then only the second one was raised. Both Computer Modern and \mathdefault fonts have same issues. I want to fix all the baselines as default positions. Does anyone have good ideas? Magician ---

Re: [Matplotlib-users] Display problem on CentOS

2012-04-04 Thread Magician
otlib.pyplot as plt > plt.plot([1,2,4,3]) > plt.show() Then I got plot window from PyQt4! :) Magician On 2012/04/01, at 19:42, matplotlib-users-requ...@lists.sourceforge.net wrote: > Date: Sat, 31 Mar 2012 07:53:21 -1000 > From: Eric Firing > Subject: Re: [Matplotlib-users] Display

Re: [Matplotlib-users] Display problem on CentOS

2012-03-31 Thread Magician
tlib.pyplot.show() exactly worked. So I tried to install PyGTK from source code, but it's fairly complicated. Is there an easy way to install backends for additionally installed Python? My python is v2.7.2. Magician On 2012/03/27, at 23:04, Alexis Praga wrote: > You can check you are

Re: [Matplotlib-users] Display problem on CentOS

2012-03-27 Thread Magician
Thank you, Alexis. I try to install PyQt4 and set Qt4Agg just now, but nothing displayed. Ummm...what's wrong...?? Magician On 2012/03/27, at 17:05, Alexis Praga wrote: > I had the same problem on Debian. > Editing the matplotlibrc (should be installed somewhere in your >

[Matplotlib-users] Display problem on CentOS

2012-03-26 Thread Magician
It looks successfully installed, but when I type show() command, nothing appears. I can export PNG image by using savefig() command, so maybe I'm using invalid backend. How can I display plots with show() command? Magician -