我正在尝试添加一个自定义拦截和斜率的线。我知道我可以使用geom_abline
,但该线超出了图的边缘。
我有以下数据。
>table
intent observed true
0 0.00 0.07
.1-.3 0.19 0.19
.4-.6 0.51 0.41
.7-.9 0.79 0.48
1 1.00 0.53
以下是dput()
structure(list(intent = structure(c(4L, 1L, 2L, 3L, 5L), .Label = c(".1-.3",
".4-.6", ".7-.9", "0", "1"), class = "factor"), observed = c(0,
0.19, 0.51, 0.79, 1), true = c(0.07, 0.19, 0.41, 0.48, 0.53)), row.names = c(NA,
-5L), class = "data.frame", .Names = c("intent", "observed",
"true"))
这是我目前的解决方案
table %>%
ggplot(aes(y=true,x=observed))+
geom_point()+
geom_smooth(method = lm,se=F,color="black",lty=2,size=1/2)+
geom_abline(intercept=0.07, slope=0.599,size=1/2)
问题是geom_abline
是一种参考线。因此,它超过了0附近的图的边缘,并且在x轴上超过0.8时不完全可见,而与geom_smooth
相比,在绘图区域中保持一条线。如何让geom_abline
在geom_smooth
中工作,使其适合绘制区域。
答案 0 :(得分:1)
您可以使用geom_segment()
:
library(ggplot2)
ggplot(table, aes(y = true, x = observed)) +
geom_point() +
geom_smooth(method = lm, se = F, color = "black", lty = 2, size = 1 / 2) +
geom_segment(x = 0, y = 0.07, xend = 1, yend = 0.669, size = 1 / 2) +
scale_y_continuous(limits = c(0, 0.7))
使用线性方程计算yend
参数:y = 0.07 + x0.599
0.07 + 0.599
[1] 0.669