How do errorbars change in logplot?

6 次查看(过去 30 天)
Hi all,
I have a collection of data points at every timestep, say at timestep , I have a collection of points . For I have again and so on. Then I plot the average at every timestep together with the errorbars, giving the 95% confidence interval. My question is now, if I then do:
set(gca, 'YScale', 'log')
What happens to the errorbars? For example, does the average of the errorbar in logspace become the log of the old errorbar or does it become the average of the log of the data points? How exactly thus the rescaling happen?
Thank you in advance for your reply!

回答(1 个)

Star Strider
Star Strider 2023-4-9
The error bars scale with appropriate axis scales, and negative error bars or error bars equal; to zero do not plot at all on a logarithmic axis —
x = 1:10;
y = rand(size(x));
err = randn(size(x))*0.1;
figure
errorbar(x, y, err)
grid
figure
errorbar(x, y, err)
grid
set(gca, 'YScale','log')
Warning: Negative data ignored
(This also neatly illustrates the problem of doing a regression on logarithmically-scaled variables, because the actual errors behave the same way. They are multiplicative, not additive, violating the assumptions of least-squares parameter estimation.)
.

类别

Help CenterFile Exchange 中查找有关 Errorbars 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by