Regression line on log-log plot with error bounds?

5 ビュー (過去 30 日間)
Andi
Andi 2021 年 12 月 7 日
コメント済み: dpb 2021 年 12 月 7 日
Hi everyone,
In my dataset, both x and y parametere have mean value, lower bound and upper bound. May someone suggest me how can i generate the plot attached below using my data set.
(1) Scatter plot on log-log scale with regression line
(2) upper and lower bound
....
clear all
clc
PDS=load('N_mean_bounds.txt'); % PDS loer mean and upper bound
pds_lb=PDS(:,1)/1000000; % lower bound
pds_m=PDS(:,2)/1000000; %mean value
pds_ub=PDS(:,3)/1000000; %upper bound
R=load('tes222t.txt'); %R lower bound, mean and upper bound
r_lb=R(:,1); %lower bound
r_m=R(:,2); % mean value
r_ub=R(:,3); % upper bound
loglog(pds_mean,r_mean,'c','MarkerFaceColor',[0 0.447 0.741])
  2 件のコメント
Adam Danz
Adam Danz 2021 年 12 月 7 日
Learn about confidence and prediction bounds here
You can either fit your raw data to a log function or fit the log transforms of your raw data to a line which is what I'd probably do.
dpb
dpb 2021 年 12 月 7 日
While could make up data, be simplest if you would attach the data as a .mat file...
Looks to me like what was done was done incorrectly -- that set of error bands looks way to tight given the data unless they're to represent the error on the mean, not a prediction -- but even then, just can't be right. Probably not based on transforming the model to the linear space and computing but just the error on the log instead.
And, define which upper/lower bound you have in mind...

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by