Re: [Matplotlib-users] Multiple Y-axis

2007-05-22 Thread Bernhard Voigt
Is there any documentation or example presenting similar graphs ? Take a look at two_scales.py from the examples ( http://matplotlib.sourceforge.net/matplotlib_examples_0.90.0.zip) Bernhard - This SF.net email is sponsore

Re: [Matplotlib-users] Multiple Y-axis

2007-05-22 Thread Benoit Donnet
Hi, to the best of my knowledge, you have only the opportunity to use the left Y-axis and the right Y-axis (use twinx()) Benoit Le 22-mai-07 à 11:44, PA a écrit : > > Hello, > > We use Matplotlib for the generation of graphs. > This library seems very complete and powerful. > > Nevertheless

[Matplotlib-users] Multiple Y-axis

2007-05-22 Thread PA
Hello, We use Matplotlib for the generation of graphs. This library seems very complete and powerful. Nevertheless we have difficulty making a graph that represents multiple curves with multiple Y-Axis. We don't find how to add a new Y-Axis: - on the left Y-axis and on the left of the axis

[Matplotlib-users] Multiple y-axis

2007-02-12 Thread kc106_2005-matplotlib
Hi all, I am new to matplotlib. I like to know how to create a plot that contains several y-axis (up to say, 6) with only 1 x-axis (similar to the two_scales.py type plot but with all of the y-axis on one side). I know you can create multiple single curve plots on the same page but that's not

Re: [Matplotlib-users] Multiple y axis plotting

2006-11-07 Thread Etrade Griffiths
John thanks - twinx was indeed where I "borrowed" some of the lines from. They're in the code explicitly 'cos it's a lot clearer to me than using twinx which is buried somewhere in the pylab interface Alun Griffiths At 15:32 07/11/2006, you wrote: > > "Etrade" == Etrade Griffiths <[EMAIL

Re: [Matplotlib-users] Multiple y axis plotting

2006-11-07 Thread John Hunter
> "Etrade" == Etrade Griffiths <[EMAIL PROTECTED]> writes: Etrade> After poking around in the Pylab source, managed to sort Etrade> the multiple line plotting using Etrade> fig = self.get_figure() ax1 = fig.gca() ax2 = Etrade> fig.add_axes(ax1.get_position(), sharex=ax1, E

Re: [Matplotlib-users] Multiple y axis plotting

2006-11-07 Thread Etrade Griffiths
After poking around in the Pylab source, managed to sort the multiple line plotting using fig = self.get_figure() ax1 = fig.gca() ax2 = fig.add_axes(ax1.get_position(), sharex=ax1, frameon=False) so issue closed for the moment --

Re: [Matplotlib-users] Multiple y axis plotting

2006-11-06 Thread Etrade Griffiths
John am trying to make a plot something along the lines of the attached. This has a single plot area with separate y-axes on either side of the plot, rather than two plot areas, each with their own axis Best regards Alun Griffiths At 14:24 06/11/2006, John Hunter wrote: > "Etrade" ==

Re: [Matplotlib-users] Multiple y axis plotting

2006-11-06 Thread John Hunter
> "Etrade" == Etrade Griffiths <[EMAIL PROTECTED]> writes: Etrade> Hi new to Matplotlib and struggling to make a plot that Etrade> has three lines plotted on it: two are supposed to plot on Etrade> the LH y axis and the third on the RH y axis. The code so Etrade> far is

[Matplotlib-users] Multiple y axis plotting

2006-11-06 Thread Etrade Griffiths
Hi new to Matplotlib and struggling to make a plot that has three lines plotted on it: two are supposed to plot on the LH y axis and the third on the RH y axis.  The code so far is import os import math import wx import wxmpl import numpy # === # Define plot data window # ==