Re: [Matplotlib-users] Unused matplotlibrc parameter

2009-06-17 Thread Paul Novak
Pardon me, but I was hasty in sending the diff. The following diff will put a multiplication symbol in the tick label where large numbers are expected, but it also removes any possibility of getting a number written as 1e10, for example, so it definitely is not complete. Hopefully, this is a st

[Matplotlib-users] Unused matplotlibrc parameter

2009-06-17 Thread Paul Novak
Hello, I think there is an unused parameter in matplotlibrc, the text.markup which defaults to 'plain'. text.markup is not found in rcsetup.py. Similarly, there is a keyword to ScalarFormatter, useMathText, that is always set to its default, False, in ticker.py; no other function accesses or u

Re: [Matplotlib-users] hexbin extent Attribute Error

2009-06-17 Thread John Hunter
On Wed, Jun 17, 2009 at 5:31 PM, Alexandar Hansen wrote: > Hello, > > I've been having fun using hexbin, but I'd like to have consistent bin sizes > and plot ranges for different sets of data. What I'm finding is that the bin > sizes are primarily determined by the input data mins and maxes. For >

Re: [Matplotlib-users] Updating tick labels when using animation

2009-06-17 Thread John Hunter
On Wed, Jun 17, 2009 at 5:27 PM, Elan Pavlov wrote: > Hi, > I'm using an animated graph in which most of the time I don't want it > to autoscale (due to speed). Once in a while I want it to change the > limits of the y-axis. In order to do this I use set_ylim and follow by > a canvas.draw(). Howeve

[Matplotlib-users] hexbin extent Attribute Error

2009-06-17 Thread Alexandar Hansen
Hello, I've been having fun using hexbin, but I'd like to have consistent bin sizes and plot ranges for different sets of data. What I'm finding is that the bin sizes are primarily determined by the input data mins and maxes. For instance, I'm plotting data with something like: # import matplotl

[Matplotlib-users] Updating tick labels when using animation

2009-06-17 Thread Elan Pavlov
Hi, I'm using an animated graph in which most of the time I don't want it to autoscale (due to speed). Once in a while I want it to change the limits of the y-axis. In order to do this I use set_ylim and follow by a canvas.draw(). However it does not actually redraw the canvas and the old tick labe

[Matplotlib-users] Visuals for linux file systems

2009-06-17 Thread Gökhan SEVER
For those who haven't seen the article on slashdot: A Visual Expedition Inside the Linux File Systems Some figures are highly eye-catching. Some of which I haven't seen in matplotlib gallery nor could be produced with. Gökhan -

Re: [Matplotlib-users] drawing a line segment wjhen using polar coordinates

2009-06-17 Thread Yeates, Mathew C
Thanks. The svn trunk worked for me. -Original Message- From: Michael Droettboom [mailto:md...@stsci.edu] Sent: Wednesday, June 17, 2009 9:27 AM To: Yeates, Mathew C Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] drawing a line segment wjhen using polar coordi

Re: [Matplotlib-users] drawing a line segment wjhen using polar coordinates

2009-06-17 Thread Michael Droettboom
You can pass "resolution=1" to the axes function. Unfortunately, when doing that you will lose the grid lines. This is a known bug. Better yet, update to SVN trunk which does this by default and has working grid lines. Mike Yeates, Mathew C wrote: > > The following produces an arc instead

[Matplotlib-users] drawing a line segment wjhen using polar coordinates

2009-06-17 Thread Yeates, Mathew C
The following produces an arc instead of a line. What am I doing wrong? ax = axes(polar=True,rmax=1.0) polar([1,2],[0.2,0.3]) #or plot([1,2],[0.2,0.3]) -- Crystal Reports - New Free Runtime and 30 Day Trial Check out th

Re: [Matplotlib-users] beginner help: color map plot from raw data

2009-06-17 Thread Matthias Michler
On Tuesday 16 June 2009 21:29:29 Nathaniel Echols wrote: > I'm attempting to plot the distribution of bond angles in protein > structures (the best-known example: > http://en.wikipedia.org/wiki/Ramachandran_plot). I have the raw data as a > collection of x,y,z data, where x and y are integers betw