r - 在 boxplot r 中添加回归线

标签 r boxplot

我使用下面的代码在箱线图后添加回归线。

boxplot(yield~Year, data=dfreg.raw,
        ylab = 'Yield (bushels/acre)',
        col = 'orange')
yield.year <- lm(yield~Year, data = dfreg.raw)
abline(reg = yield.year)

但是,回归线没有显示。我得到的情节如下 enter image description here

我的数据如下所示。这是面板数据,最终可能会出现回归线问题。

> head(dfreg.raw)
# A tibble: 6 x 15
  index  Year yield State.Code  harv frez_j  dd_j cupc_j sm7_j fitted_j max_spring_j sp_spring_j
  <dbl> <dbl> <dbl>      <dbl> <dbl>  <dbl> <dbl>  <dbl> <dbl>    <dbl>        <dbl>       <dbl>
1 16001  1984 105           16  7200   330. 2438.   7.32  53.4     49.1         19.7       0.863
2 16001  1985  96.8         16  8200   413. 2407.   5.71  52.5     48.4         23.9      -0.391
3 16001  1986  94.9         16  7400   476. 2638.   8.34  52.5     48.4         23.4      -0.122
4 16001  1987 106.          16  9700   154. 2838.   5.44  54.4     49.9         25.6      -0.485
5 16001  1988  89.6         16  7600   184. 2944.   3.28  54.5     50.0         23.9       0.115
6 16001  1989  96.4         16  7300   383. 2766.   5.91  52.6     48.4         23.5      -1.02 
# … with 3 more variables: pc_spring_j <dbl>, lt <dbl>, qt <dbl>


有人对此有任何想法吗?

最佳答案

x 值为 1:max(x 变量的级别),因此 abline 不起作用。您可以尝试下面这样的操作。

首先模拟一个数据集:

dfreg.raw= data.frame(
yield=rpois(100,lambda=rep(seq(60,100,by=10),each=20)),
Year=rep(1995:1999,each=20)
)

然后绘制:

boxplot(yield~Year, data=dfreg.raw,
        ylab = 'Yield (bushels/acre)',
        col = 'orange')
yield.year <- lm(yield~Year, data = dfreg.raw)

获取唯一的年份升序向量,并进行预测

X = sort(unique(dfreg.raw$Year))
lines(x=1:length(X),
y=predict(yield.year,data.frame(Year=X)),col="blue",lty=8)

enter image description here

关于r - 在 boxplot r 中添加回归线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59418085/

相关文章:

r - 具有条件字体颜色的 KableExtra 未在正确位置映射正确颜色

r - 彩色箱线图

matlab - 在箱线图上添加 latex 解释器

R::data.table:使用先前的平衡和逐行迭代按组生成运行平衡

python - 箱线图 : Outliers Labels Python

r - 将每个组的多个箱线图分层

r - 箱线图:Matlab 显示关于 R 的不同图形?

r - 如何在 Linux 上从 R 访问 Olap-Cubes

r - 比例建模 - Betareg 错误

debugging - 打印堆栈跟踪并在 R 中发生错误后继续