How fitlm computes confidence bounds?

조회 수: 8 (최근 30일)
Christos Tsallis
Christos Tsallis 2023년 2월 5일
편집: the cyclist 2023년 2월 7일
I have used fitmid=fitlm(x1,y1), fitmax=fitlm(x2,y2), fitmin=fitlm(x3,y3) in order to return a linear regression model for my data. Then, I plot them using "plot" function. I saw that confidence bounds were also included but I would like to ask, how are they computed? Is it 95% confident interval?

답변 (1개)

the cyclist
the cyclist 2023년 2월 5일
Yes, the coefCI property of the model object output from fitlm gives the 95th percentile confidence intervals of the fitted coefficients.
  댓글 수: 2
Christos Tsallis
Christos Tsallis 2023년 2월 7일
편집: Christos Tsallis 2023년 2월 7일
May you please explain what 95% confidence bound means? @the cyclist
the cyclist
the cyclist 2023년 2월 7일
편집: the cyclist 2023년 2월 7일
fitlm estimates a coefficient for each term in the fitting equation. Call one of those coefficients beta. There is a true value of beta (that is unknown), and you have an estimate of it.
Now suppose you performed the whole experiment thousands of times, and calculated thousands of confidence intervals. You would expect that the true value beta to be inside the 95th confidence interval in 95% of those experiments.
Note that this is not quite the same as saying there is a 95% chance that the true value beta lies inside this confidence interval. But that is the nature of frequentist statistics.
This concept is not easy to understand. The wikipedia page on confidence intervals is helpful

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Model Building and Assessment에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by