Fitting data with broekn stick regression

조회 수: 6 (최근 30일)
Wendy Cameron
Wendy Cameron 2018년 6월 5일
댓글: John D'Errico 2018년 6월 8일
Hi.
I have some grape ripening data (sugar versus heat degrees) and want to try and fit a broken stick regression to it, and am wondering if this can be done in Matlab.
The data is quite simple e.g.
x=[1644 1669 1697 1720 1792 1909];
y=[11.9 11.6 12.6 13.4 13.9 14.6],
Basically grape ripening seems to follow a linear increase until some point and then flattens off on another trajectory. I'm wondering how I might use segmented or broken stick regression in matlab.

답변 (3개)

Image Analyst
Image Analyst 2018년 6월 6일
Yes your data is quite simple. In fact TOO simple.
x=[1644 1669 1697 1720 1792 1909];
y=[11.9 11.6 12.6 13.4 13.9 14.6]
plot(x, y, 'bs-', 'LineWidth', 2);
grid on;
title('Sugar versus heat degrees', 'fontSize', fontSize);
ylabel('Sugar', 'fontSize', fontSize);
xlabel('heat degrees', 'fontSize', fontSize);
I don't see how you can expect to get any kind of meaningful regression out of this very tiny simple set of data.
Anyway, why would you want to lines instead of a formula for a more continuous function? What does two linear formulas get you over one single model formula, except for a more complicated model where you have to check your x value first before plugging it into one of two models? Not sure why two formulas are desired/advantageous over one formula. Please explain why.
  댓글 수: 11
Wendy Cameron
Wendy Cameron 2018년 6월 8일
Yes, thank you. I'm working on that now with some of my data. It is intuitively correct an my data is simpler so less iterations to try.
Thanks
John D'Errico
John D'Errico 2018년 6월 8일
To reiterate my comment, you simply do not have sufficient information to estimate a broken stick regression, and certainly not to estimate where the breaks occur.

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


Image Analyst
Image Analyst 2018년 6월 8일
편집: Image Analyst 2018년 6월 8일
Here's one way to do it. See attached script for demo with noisy data.
Basically I fit lines to the left side and right side and kept track of the slope differences as I varied the point (x value, index) at which the sides were separated. The point where the slope different is greatest is where the lines are most dissimilar and where the crossing occurs.
  댓글 수: 2
Wendy Cameron
Wendy Cameron 2018년 6월 8일
Thanks, I just trialled that approach with much simpler data and it seems to work. Also, because this is a biological system, in some weather conditions the sugar increase does not plateau before the fruit is picked so your approach should handle that as well because the lines won't be dissimilar.
Image Analyst
Image Analyst 2018년 6월 8일
Then, is it time to "Accept this answer"? Or is it still not working?

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


JAYANTH BHIMAVARAPU
JAYANTH BHIMAVARAPU 2018년 6월 5일
You can have a look at this solution: Broken-Stick Regression
  댓글 수: 1
Wendy Cameron
Wendy Cameron 2018년 6월 6일
Yes I did see that but I really just can't understand it and can't make it work with my data unfortunately.
Wendy

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

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by