使用分级alpha(透明度)级别绘制置信区域着色

时间:2017-01-24 13:57:24

标签: r plot

我想绘制各种线条的阴影置信区域,但是希望这些区域的alpha级别从b到c逐渐变化,其中b是中位数的alpha,c是任何外部分位数的alpha我在用。以下代码生成了我想要的线和置信区域图,但没有变量透明度。

x= 1:10+rnorm(10)
xhigh=x+rnorm(10)^2
xlow=x-rnorm(10)^2

plot(x,type='l')
polygon(x=c(1:length(xlow),length(xlow):1),   y=c(xhigh,xlow[length(xlow):1]),col = rgb(1,0,0,.1),border=NA)

1 个答案:

答案 0 :(得分:5)

您可以覆盖多个多边形:

plot(x,type='l')
for (i in seq(0, 1, 0.01)) {
  polygon(x = c(x + i * (xhigh - x), x - i * (xlow - x)), 
          col = rgb(1, 0, 0, .005), border = NA)
}

enter image description here

尽管如此,我认为你的例子实际上是错误的,可能需要类似的东西:

plot(x,type='l')
for (i in seq(0, 1, 0.01)) {
  polygon(x = c(1:10, 10:1),
          y = c(x + i * (xhigh - x), rev(x - i * abs(x - xlow))), 
          col = rgb(1, 0, 0, .005), border = NA)
}

enter image description here