[Matplotlib-users] Documentation

2009-09-11 Thread Sebastian Pająk
Hi Where can I download current mpl documentation in HTML format? Because there is now way to build it under win32 -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your repor

Re: [Matplotlib-users] best format for MS word?

2009-09-02 Thread Sebastian Pająk
I had similar problem try hi-res png images at 300dpi w/o transparency (ms cannot handle transp. png correctly). ms word shows png little blury, but after printing (to PDF for example) images are sharp as knife 2009/9/2 Shixin Zeng : > OK, > > I'm attaching a file that converts svg to emf, which

[Matplotlib-users] After update to 0.99.0 - mpl doesn't work

2009-08-29 Thread Sebastian Pająk
Hi When I try to import anything from mpl, Python's interpreter exits without any error. This happens after the 0.99.0 upgrade. This is example session: d:\>python Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license"

[Matplotlib-users] ImportError: No module named _backend_gdk

2009-07-30 Thread Sebastian Pająk
Hello I don't know why, but after switching from python2.5 to python2.6 I cannot even launch matplotlib (matplotlib-0.98.5.3.win32-py2.6.exe). This is what I get: Traceback (most recent call last): File "", line 1, in File "D:\msys\opt\python\lib\site-packages\pylab.py", line 1, in from

Re: [Matplotlib-users] logarithmic scale of colorbar with ticks and custom labels

2009-05-07 Thread Sebastian Pająk
n Wed, May 6, 2009 at 3:28 PM, Sebastian Pająk wrote: >> Hello >> >> I have a contour plot with specified number of levels (isolines): >> >> lev = array([2,3,5,7,10,13,17,21,26,32,42,62,80,100,120,140,180]) >> >> to have a log "z" axis I put: >> >&

[Matplotlib-users] logarithmic scale of colorbar with ticks and custom labels

2009-05-07 Thread Sebastian Pająk
Hello I have a contour plot with specified number of levels (isolines): lev = array([2,3,5,7,10,13,17,21,26,32,42,62,80,100,120,140,180]) to have a log "z" axis I put: from matplotlib import colors contourf(x1, y1, z1, lev, norm=colors.LogNorm(lev[0],lev[len(lev)-1])) now, to get colorbar in l

[Matplotlib-users] logarithmic scale of colorbar with ticks and custom labels

2009-05-06 Thread Sebastian Pająk
Hello I have a contour plot with specified number of levels (isolines): lev = array([2,3,5,7,10,13,17,21,26,32,42,62,80,100,120,140,180]) to have a log "z" axis I put: from matplotlib import colors contourf(x1, y1, z1, lev, norm=colors.LogNorm(lev[0],lev[len(lev)-1])) now, to get colorbar in l

Re: [Matplotlib-users] Equal decades on loglog axes

2009-05-06 Thread Sebastian Pająk
Thanks a lot!. I don't understand it but It works now as it should. 2009/5/6 Jae-Joon Lee : > On Wed, May 6, 2009 at 9:49 AM, Sebastian Pająk wrote: >> Hello >> >> How can I set decade on log x axis to be equal length to decade on log >> y axis (physically)? >

[Matplotlib-users] Equal decades on loglog axes

2009-05-06 Thread Sebastian Pająk
Hello How can I set decade on log x axis to be equal length to decade on log y axis (physically)? If I make: ax.set_xscale("log") ax.set_yscale("log") ax.set_aspect(1) I get it all wrong, the units are equal, not decades!! I need the same effect as I get in Gnuplot - the square decades: set l