Re: [Matplotlib-users] logarithmic errorbar plot

2008-05-01 Thread Georg Holzmann
Many thanks ! LG Georg Eric Firing schrieb: > Georg, > > See errorbar_demo.py in the examples directory. The last example sets > the y-axis to a log scale; it should also work if you use the same > method to set both scales to log, so it would be like this: > > ax = subplot(111) > ax.set_xsc

Re: [Matplotlib-users] logarithmic errorbar plot

2008-05-01 Thread Eric Firing
Georg, See errorbar_demo.py in the examples directory. The last example sets the y-axis to a log scale; it should also work if you use the same method to set both scales to log, so it would be like this: ax = subplot(111) ax.set_xscale('log') ax.set_yscale('log') errorbar(t, s+2, e, f, fmt='o'

[Matplotlib-users] logarithmic errorbar plot

2008-05-01 Thread Georg Holzmann
Hallo! Is there any possibility to use a logarithmic errorbar plot ? I want to draw my values as with loglog, but additionally add the variance to the data points as with yerr in errorbar. Or is it maybe better to add the variance manually in a loglog plot - is this possible ? Thanks for any h