Re: [Matplotlib-users] wrong displayed text iso-8859-2

2006-10-20 Thread skokot
I found that the problem occurs when I have GTKAgg WXAgg or PS backends set in matplotlibrc file and matplotlib displays fonts properly when using GTK, WX. So I guess that it must be something wrong with antigrain or preparing text for agg rendering. Any help, regards, Seweryn Kokot

Re: [Matplotlib-users] picking vertices of a line

2006-10-20 Thread John Hunter
> "Jeff" == Jeff Peery <[EMAIL PROTECTED]> writes: Jeff> hello, I'm using matplotlib and the wxAgg as a backend with Jeff> wxpython for a statistical process control application. I Jeff> would like to be able to pick points on an xy line and get Jeff> the index of the point. I

Re: [Matplotlib-users] can matplotlib make a plot like this?

2006-10-20 Thread Chloe Lewis
I don't know how to make the "//" symbol in the y-axis, but if you have two plots that share the same x-axis, you can represent this kind of data. The "Working with multiple figure and axes" section of the tutorial http://matplotlib.sourceforge.net/tutorial.html is almost right; if you turn

[Matplotlib-users] picking vertices of a line

2006-10-20 Thread Jeff Peery
hello, I'm using matplotlib and the wxAgg as a backend with wxpython for a statistical process control application. I would like to be able to pick points on an xy line and get the index of the point. I looked at the picker_demo demo and I have an idea of how this works but I'm a bit confused as to

Re: [Matplotlib-users] How to draw matrix

2006-10-20 Thread John Hunter
> "Khem" == Khem Raj <[EMAIL PROTECTED]> writes: Khem> Hi I am new to matplotlib and I am trying to use it to draw Khem> a matrix. I would want to give a different color to each box Khem> depending upon the value this matrix element has Khem> Could someone help me in quick st

Re: [Matplotlib-users] x-axis Label in hh:mm:ss format

2006-10-20 Thread John Hunter
> "Johannes" == Johannes Elbs <[EMAIL PROTECTED]> writes: Johannes> Hi, I have time data stored in the format hh:mm:ss and Johannes> would like to plot it, having about 4 to 6 ticks labeled Johannes> in this format. What I'm doing at the moment is to Johannes> first convert my

Re: [Matplotlib-users] set_ylim() does not work with twinx()-axes

2006-10-20 Thread John Hunter
> "Willi" == Willi Richert <[EMAIL PROTECTED]> writes: Willi> Hi, I am plotting two graphs in one according to Willi> http://matplotlib.sourceforge.net/examples/two_scales.py Willi> I want the plot belonging to the right axis to start with Willi> y=0. However, Willi> ax2.

[Matplotlib-users] How to draw matrix

2006-10-20 Thread Khem Raj
Hi I am new to matplotlib and I am trying to use it to draw a matrix. I would want to give a different color to each box depending upon the value this matrix element has Could someone help me in quick start meanwhile I am looking into documentation. Thanks khem -

[Matplotlib-users] Superimposed Line and Bar plots?

2006-10-20 Thread Derek Hohls
I am sure this (superimposed Line and Bar plots) is easy to do, but I cannot see any discussion of "how" on the user list (difficult to know which phrase to search!) Any pointers? Thanks Derek -- This message is subject to the CSIR's copyright, terms and conditions and e-mail legal notice. Vi

[Matplotlib-users] Box plot problem - mismatched arrays

2006-10-20 Thread Derek Hohls
I have a simple, but frustrating problem. I need to plot a number of series onto a boxplot. Some sample code looks as follows: from pylab import * from scipy import array jan = array([46, 38, 28, 14, 11, 7, 4, 3, 3, 3, 3, 3, 3, 2, 2, 1]) #jan = array([46, 38, 28, 14, 11, 7, 4, 3, 3, 3, 3,

[Matplotlib-users] x-axis Label in hh:mm:ss format

2006-10-20 Thread Johannes Elbs
Hi, I have time data stored in the format hh:mm:ss and would like to plot it, having about 4 to 6 ticks labeled in this format. What I'm doing at the moment is to first convert my time to seconds and plot y as function of yime in seconds. Here the first question: Is this the way to go or is ther

[Matplotlib-users] set_ylim() does not work with twinx()-axes

2006-10-20 Thread Willi Richert
Hi, I am plotting two graphs in one according to http://matplotlib.sourceforge.net/examples/two_scales.py I want the plot belonging to the right axis to start with y=0. However, ax2.set_ylim(ymin=0.0) does not affect the plot at all. Any hints? Regards, wr --