所以我有一个像这样的数据框:
a_data <-
data.frame(
f = f,
alpha = alpha,
asymptote = alpha_1_est)
Run Code Online (Sandbox Code Playgroud)
和这样的功能:
a_formula <- function(x) {
0.7208959 - 0.8049132 * exp(-21.0274 * x)}
Run Code Online (Sandbox Code Playgroud)
我将它们与ggplot2结合使用:
ggplot(a_data, aes(x = f, y = alpha)) +
geom_point() +
#function curve
stat_function(fun = a_formula,
color = "red") +
#asymptote of alpha
geom_hline(
yintercept = asymptote,
linetype = "longdash",
color = "blue")
Run Code Online (Sandbox Code Playgroud)
我想要并且找不到的方法是对y轴,函数曲线(红色)和渐近线(虚线)之间的区域进行着色,如下所示:

我尝试在其中挤压功能区或多边形,但无法正常工作-可能是因为我想在曲线上方而不是下方着色(下面的效果很好)。
数据框如下所示:
> head(a_data)
f alpha asymptote
1 0.01 0.007246302 0.7208959
2 0.03 0.374720198 0.7208959
3 0.05 0.484362949 0.7208959
4 0.07 0.540090209 0.7208959
5 0.09 0.625383303 0.7208959
6 0.11 0.590898201 0.7208959
Run Code Online (Sandbox Code Playgroud)
PS:我对于stackoverflow非常陌生,因此,如果我违反任何约定或以其他方式弄乱了问题,请毫不犹豫地指出。
下面的示例显示了如何geom_ribbon方便地为水平线和曲线之间的区域着色。
df1 <- structure(list(x = c(0.01, 0.03, 0.05, 0.07, 0.09, 0.11), y = c(0.007246302,
0.374720198, 0.484362949, 0.540090209, 0.625383303, 0.590898201
), asymptote = c(0.7208959, 0.7208959, 0.7208959, 0.7208959,
0.7208959, 0.7208959)), .Names = c("x", "y", "asymptote"), class = "data.frame", row.names = c("1",
"2", "3", "4", "5", "6"))
a_formula <- function(x) { 0.7208959 - 0.8049132*exp(-21.0274*x) }
xs <- seq(min(df1$x),max(df1$x),length.out=100)
ysmax <- rep(0.7208959, length(xs))
ysmin <- a_formula(xs)
df2 <- data.frame(xs, ysmin, ysmax)
library(ggplot2)
ggplot(data=df1) + geom_point(aes(x=x, y=y)) +
geom_line(aes(x=x, y=asymptote), lty=2, col="blue", lwd=1) +
stat_function(fun = a_formula, color="red", lwd=1) +
geom_ribbon(aes(x=xs, ymin=ysmin, ymax=ysmax), data=df2, fill="#BB000033")
Run Code Online (Sandbox Code Playgroud)