在断点处连接直线和水平线的分段回归 [英] Piecewise regression with a straight line and a horizontal line joining at a break point

查看:165
本文介绍了在断点处连接直线和水平线的分段回归的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用一个断点进行分段线性回归,其中回归线的后半部分为slope = 0.有一些如何进行分段线性回归的示例,例如在这里.我遇到的问题是我不清楚如何将模型一半的斜率固定为0.

I want to do a piecewise linear regression with one break point, where the 2nd half of the regression line has slope = 0. There are examples of how to do a piecewise linear regression, such as here. The problem I'm having is I'm not clear how to fix the slope of half of the model to be 0.

我尝试了

lhs <- function(x) ifelse(x < k, k-x, 0)
rhs <- function(x) ifelse(x < k, 0, x-k)
fit <- lm(y ~ lhs(x) + rhs(x)) 

其中k是断点,但右侧的线段不是平面/水平线.

where k is the break point, but the segment on the right is not a flat / horizontal one.

我想将第二段的斜率限制为0.我尝试过:

I want to constrain the slope of the second segment at 0. I tried:

fit <- lm(y ~ x * (x < k) + x * (x > k))

但同样,我不确定如何使下半部分的斜率为零.

but again, I'm not sure how to get the second half to have a zero slope.

任何帮助将不胜感激.

Any help is greatly appreciated.

我自己的解决方案

由于下面的评论,我有一个解决方案.这是我用来优化然后绘制拟合的代码:

I have a solution thanks to the comment below. Here's the code that I use to optimize and then plot the fit:

x <- c(1, 2, 3, 1, 2, 1, 6, 1, 2, 3, 2, 1, 4, 3, 1)
y <- c(0.041754212, 0.083491254, 0.193129615, 0.104249201, 0.17280516, 
0.154342335, 0.303370501, 0.025503008, 0.123934121, 0.191486527, 
0.183958737, 0.156707866, 0.31019215, 0.281890206, 0.25414608)

range_x <- max(x) - min(x)
intervals <- 1000
coef1 <- c()
coef2 <- c()
r2 <- c()

for (i in 1:intervals) {
  k <- min(x) + (i-1) * (range_x / intervals)     
  x2 = (x - k) * (x < k)
  fit <- lm(y ~ x2)
  coef1[i] <- summary(fit)$coef[1]
  coef2[i] <- summary(fit)$coef[2]
  r2[i] <- summary(fit)$r.squared
  }

best_r2 <- max(r2)   # get best r squared
pos <- which.max(r2)                                          
best_k <- min(x) + (pos - 1) * (range_x / intervals)

plot(x, y) 
curve(coef1[pos] - best_k * coef2[pos] + coef2[pos] * x,
      from=min(x), to=best_k, add = TRUE)
segments(best_k, coef1[pos], max(x), coef1[pos])

推荐答案

Stack Overflow有一个非常相似的线程:二次多项式和一条直线在断点处平滑连接.唯一的区别是我们现在考虑:

There is a very similar thread on Stack Overflow: Piecewise regression with a quadratic polynomial and a straight line joining smoothly at a break point. The only difference is that we now consider:

事实证明,我的答案中定义的函数estchoose.cpred完全改变了;我们只需要修改getX即可返回分段回归的设计矩阵:

It turns out that functions est, choose.c and pred defined in my answer need not be changed at all; we only need to modify getX to return the design matrix for your piecewise regression:

getX <- function (x, c) cbind("beta0" = 1, "beta1" = pmin(x - c, 0))

现在,我们遵循玩具示例中的代码,以使模型适合您的数据:

Now, we follow the code in toy example to fit a model to your data:

x <- c(1, 2, 3, 1, 2, 1, 6, 1, 2, 3, 2, 1, 4, 3, 1)
y <- c(0.041754212, 0.083491254, 0.193129615, 0.104249201, 0.17280516, 
0.154342335, 0.303370501, 0.025503008, 0.123934121, 0.191486527, 
0.183958737, 0.156707866, 0.31019215, 0.281890206, 0.25414608)

x的范围是1到6,因此我们考虑

x ranges from 1 to 6, so we consider

c.grid <- seq(1.1, 5.9, 0.05)
fit <- choose.c(x, y, c.grid)
fit$c
# 4.5

最后我们做出预测图:

x.new <- seq(1, 6, by = 0.1)
p <- pred(fit, x.new)
plot(x, y, ylim = c(0, 0.4))
matlines(x.new, p[,-2], col = c(1,2,2), lty = c(1,2,2), lwd = 2)

我们在拟合模型中拥有丰富的信息:

We have rich information in the fitted model:

str(fit)
#List of 12
# $ coefficients : num [1:2] 0.304 0.055
# $ residuals    : num [1:15] -0.06981 -0.08307 -0.02844 -0.00731 0.00624 ...
# $ fitted.values: num [1:15] 0.112 0.167 0.222 0.112 0.167 ...
# $ R            : num [1:2, 1:2] -3.873 0.258 9.295 -4.37
# $ sig2         : num 0.00401
# $ coef.table   : num [1:2, 1:4] 0.3041 0.055 0.0384 0.0145 7.917 ...
#  ..- attr(*, "dimnames")=List of 2
#  .. ..$ : chr [1:2] "beta0" "beta1"
#  .. ..$ : chr [1:4] "Estimate" "Std. Error" "t value" "Pr(>|t|)"
# $ aic          : num -34.2
# $ bic          : num -39.5
# $ c            : num 4.5
# $ RSS          : num 0.0521
# $ r.squared    : num 0.526
# $ adj.r.squared: num 0.49

例如,我们可以检查系数汇总表:

For example, we can inspect coefficients summary table:

fit$coef.table
#        Estimate Std. Error  t value     Pr(>|t|)
#beta0 0.30406634 0.03840657 7.917039 2.506043e-06
#beta1 0.05500095 0.01448188 3.797915 2.216095e-03

这篇关于在断点处连接直线和水平线的分段回归的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆