Re: [Matplotlib-users] sans-serif tick labels

2006-11-22 Thread Christian Kristukat
I found one more solution which makes use of the sansmath.py style, available at http://www.tug.org/tex-archive/macros/latex/contrib/misc/sansmath.sty. To use it with matplotlib I updated the 'sans-serif' member of the font_info dict: 'sans-serif': ('cmss', '\usepackage{sansmath}'), and t

Re: [Matplotlib-users] sans-serif tick labels

2006-11-22 Thread Christian Kristukat
Christian Kristukat <[EMAIL PROTECTED]> writes: > > Darren Dale ...> writes: > > We tried supporting sans-serif ticklabels with usetex a while back, and it > > turned out to be a headache. I'll have a look at cmbright, but no promises. > > Thanks. Btw., I didn't know about cmbright before look

[Matplotlib-users] Create plots in functions, plot later

2006-11-22 Thread Roman Bertle
Hello, i had problems subscribing to the list, maybe the mail below I sent last week, was not delivered. Hence I send it again: --- Hello, i try to write a module which evaluates various Data, and occasionally creates a plot, which is returned to t

Re: [Matplotlib-users] matplotlib

2006-11-22 Thread Christopher Barker
giovanni ruggiero wrote: > Hi All, > I had problens to use the function quiver with the matplotlib 82-5. Eric > advice me to upgrade the mpl. I have tried to upgrade the matplotlib but > i have to upgrade almost all my libs. The case is that i can not upgrade > these dependences without affect a

Re: [Matplotlib-users] matplotlib

2006-11-22 Thread John Hunter
> "giovanni" == giovanni ruggiero <[EMAIL PROTECTED]> writes: giovanni> Hi All, I had problens to use the function quiver with giovanni> the matplotlib 82-5. Eric advice me to upgrade the giovanni> mpl. I have tried to upgrade the matplotlib but i have giovanni> to upgrade almo

[Matplotlib-users] matplotlib

2006-11-22 Thread giovanni ruggiero
Hi All, I had problens to use the function quiver with the matplotlib 82-5. Eric advice me to upgrade the mpl. I have tried to upgrade the matplotlib but i have to upgrade almost all my libs. The case is that i can not upgrade these dependences without affect all my configuration wich means tha

Re: [Matplotlib-users] savefig.edgecolor not working

2006-11-22 Thread John Hunter
> "Samuel" == Samuel M Smith <[EMAIL PROTECTED]> writes: Samuel> I don't know where the transparency is coming from Samuel> either. I don't know where I would set the alpha. Could it Samuel> be in the .rc file? Could it be the way Macs process png Samuel> files. If you like I

Re: [Matplotlib-users] savefig.edgecolor not working

2006-11-22 Thread Samuel M . Smith
I don't know where the transparency is coming from either. I don't know where I would set the alpha. Could it be in the .rc file? Could it be the way Macs process png files. If you like I can send a copy of the image On 21 Nov, 2006, at 12:29, John Hunter wrote: >> "Samuel" == Samuel M Smi

Re: [Matplotlib-users] spy ignores negative values?

2006-11-22 Thread John Hunter
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: Eric> fine. But if it (mainly the function option) is something Eric> that merely might be useful to someone someday, then I Eric> suggest it be left out until there is a clear need. (My 2 Eric> cents-worth, or less.) sounds

[Matplotlib-users] figure legend and Axes3D

2006-11-22 Thread Michael Held
hi, does anybody know I can show figure legend for 3D plots correctly? I am using Axes3D.scatter3D which returns a Patch3D object, which seems not to work with pylab.figlegend thanks! michael - Take Surveys. Earn Cash. Inf

Re: [Matplotlib-users] spy ignores negative values?

2006-11-22 Thread Eric Firing
Robert Cimrman wrote: > John Hunter wrote: >>> "Robert" == Robert Cimrman <[EMAIL PROTECTED]> writes: >> >> Robert> BTW would you consider changing the definition of spy(2) >> Robert> as shown below, so that one could specify what 'to be a >> Robert> zero' means? >> >> I added these

Re: [Matplotlib-users] OS X: upgrade to X11 1.1.3 breaks mpl FIX

2006-11-22 Thread Christopher Barker
One more note: Christopher Barker wrote: > I wonder if you had installed 6.3.8 yourself. If you did, it really should have been put in /usr/local/ somewhere -- then you wouldn't risk conflicts with Apple's version. -Chris -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division

Re: [Matplotlib-users] OS X: upgrade to X11 1.1.3 breaks mpl FIX

2006-11-22 Thread Jeff Whitaker
Christopher Barker wrote: > Tony Mannucci wrote: > >> If you saw my previous post about upgrading to XDarwin 1.1.3, and >> breaking matplotlib, the following seems to work: >> >> Soft-linking to libfreetype.6.3.8.dylib rather than >> libfreetype.6.3.dylib (see below, copied from previous email

Re: [Matplotlib-users] spy ignores negative values?

2006-11-22 Thread Ted Drain
John, One small note - we've been bitten in the past by doing: x != 0 This assumes a numeric (int/float) quantity. If someone substitutes a different type that looks like a number, this will most likely fail. Python has a __nonzero__ method which can be used by calling 'not' or 'bool()':

Re: [Matplotlib-users] OS X: upgrade to X11 1.1.3 breaks mpl FIX

2006-11-22 Thread Christopher Barker
Tony Mannucci wrote: > If you saw my previous post about upgrading to XDarwin 1.1.3, and > breaking matplotlib, the following seems to work: > > Soft-linking to libfreetype.6.3.8.dylib rather than > libfreetype.6.3.dylib (see below, copied from previous email). That's interesting. I don't have

Re: [Matplotlib-users] spy ignores negative values?

2006-11-22 Thread Robert Cimrman
John Hunter wrote: >> "Robert" == Robert Cimrman <[EMAIL PROTECTED]> writes: > > > Robert> BTW would you consider changing the definition of spy(2) > Robert> as shown below, so that one could specify what 'to be a > Robert> zero' means? > > I added these enhancement, and a couple

Re: [Matplotlib-users] Changing markers on line

2006-11-22 Thread John Hunter
> "Stephen" == Stephen George <[EMAIL PROTECTED]> writes: Stephen> Have a lot of data, and when looking at full view I'd Stephen> like no markers, but when zoom in to see individual Stephen> points I'd like to place markers on the graph. Planing Stephen> on attaching some code

Re: [Matplotlib-users] spy ignores negative values?

2006-11-22 Thread John Hunter
> "Robert" == Robert Cimrman <[EMAIL PROTECTED]> writes: Robert> BTW would you consider changing the definition of spy(2) Robert> as shown below, so that one could specify what 'to be a Robert> zero' means? I added these enhancement, and a couple more, and an examples/spy_demos.p

Re: [Matplotlib-users] sans-serif tick labels

2006-11-22 Thread Christian Kristukat
Darren Dale <[EMAIL PROTECTED]> writes: > We tried supporting sans-serif ticklabels with usetex a while back, and it > turned out to be a headache. I'll have a look at cmbright, but no promises. Thanks. Btw., I didn't know about cmbright before looking at this problem. It seems to be part of most

Re: [Matplotlib-users] sans-serif tick labels

2006-11-22 Thread Darren Dale
On Wednesday 22 November 2006 3:27 am, Christian Kristukat wrote: > I am unable to get sans-serif tick labels with matplotlib 0.87.5 in tex > text mode. I tried with some hints from the list archive but had no > success. So I had a look at the tex-files which are created to render the > tick labels

[Matplotlib-users] sans-serif tick labels

2006-11-22 Thread Christian Kristukat
I am unable to get sans-serif tick labels with matplotlib 0.87.5 in tex text mode. I tried with some hints from the list archive but had no success. So I had a look at the tex-files which are created to render the tick labels, which look like this: \documentclass{article} \usepackage{type1cm} \re