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'