更改置信区间带的颜色?

Change the color of a confidence interval band?

我正在使用 blandr 包制作 Bland & Altman 图,置信区间肯定是我想要绘制的东西:

library(blandr)
x1 <- rnorm(100);x2 <- rnorm(100,mean = 1)
blandr.draw(x1,x2, ciShading = TRUE,ciDisplay=TRUE,plotter = "ggplot")

我希望更改置信区间的颜色。据我所知,它们不会对填充颜色的任何变化做出反应。我能做什么?

blandr 创建一个 ggplot 对象,因此您可以使用 ggplot_build 方法修改颜色。

library(blandr)
library(ggplot2)
x1 <- rnorm(100);x2 <- rnorm(100,mean = 1)

p <- 
blandr.draw(x1, x2, ciShading = TRUE, ciDisplay=TRUE, plotter = "ggplot")

p_build <- ggplot_build(p)
#> Warning: Use of `plot.data$x.axis` is discouraged. Use `x.axis` instead.
#> Warning: Use of `plot.data$y.axis` is discouraged. Use `y.axis` instead.
p_build$data[[12]][["fill"]] <- "grey"
p_build$data[[13]][["fill"]] <- "steelblue"
p_build$data[[14]][["fill"]] <- "thistle"

grid::grid.draw(ggplot_gtable(p_build))

reprex package (v2.0.0)

于 2021 年 6 月 11 日创建