|
From: Gabriele B. <gb....@gm...> - 2014-02-14 20:32:21
|
Hi,
I'm trying to plot two functions on the same errorbar picture like the code
below:
fmlp = plt.figure()
axop = fmlp.add_subplot(111)
insp = axop.errorbar(g, Pampli, yerr = ePampli, fmt = '.')
ins1 = axop.errorbar(g, lightcurva, yerr = zeros, fmt = 'x')
axop.set_title('amplitudes for phases')
fmlp.canvas.draw()
but the two functions has a very different range in y values (one near
10^-15 one near 1): how could I use two different scale (one per function)
on the same plot?
thanks
|