logarithmic errorbar plot

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 hints,
LG
Georg

PS:
I also found this unanswered post about the same topic: http://www.nabble.com/semilogx-and-errorbar-tt5182429.html#a5182429

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')

You may need to be careful to keep all values, including errorbar limits, positive.

Eric

Georg Holzmann wrote:

···

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 hints,
LG
Georg

PS:
I also found this unanswered post about the same topic: http://www.nabble.com/semilogx-and-errorbar-tt5182429.html#a5182429

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options

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_xscale('log')
ax.set_yscale('log')
errorbar(t, s+2, e, f, fmt='o')

You may need to be careful to keep all values, including errorbar limits, positive.

Eric

Georg Holzmann wrote:

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 hints,
LG
Georg

PS:
I also found this unanswered post about the same topic: http://www.nabble.com/semilogx-and-errorbar-tt5182429.html#a5182429

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options