我不确定为什么ggplot2中的mean_sdl函数(来自Hmisc)生成的误差条比手动生成的误差条宽得多,并且绘制均值+ sd和均值-sd。我的代码:
library(drc)
library(tidyverse)
test_dataset <-
structure(
list(
X = c(1e-10, 1e-08, 3e-08, 1e-07, 3e-07, 1e-06, 3e-06, 1e-05, 3e-05, 1e-04, 3e-04),
AY1 = c(0, 11, 125, 190, 258, 322, 354, 348, NA, 412, NA),
AY2 = c(3, 33, 141, 218, 289, 353, 359, 298, NA, 378, NA),
AY3 = c(2, 25, 160, 196, 345, 328, 369, 372, NA, 399, NA),
BY1 = c(3, NA, 11, 52, 80, 171, 289, 272, 359, 352, 389),
BY2 = c(5, NA, 25, 55, 77, 195, 230, 333, 306, 320, 338),
BY3 = c(4, NA, 28, 61, 44, 246, 243, 310, 297, 365, NA)
),
class = c("tbl_df", "tbl", "data.frame"),
row.names = c(NA,-11L),
.Names = c("X", "AY1", "AY2", "AY3", "BY1", "BY2", "BY3")
)
test_dataset2 <- test_dataset %>%
rename(conc = X) %>%
gather(-conc, key = "measurement", value = "signal") %>%
separate(col = measurement, into = c("mAb", "rep"), sep = "Y")
plot_with_mean_sdl <- ggplot(test_dataset2, aes(x = conc, y = signal, col = mAb)) +
scale_x_log10() +
stat_summary(fun.data = mean_se,
geom = "point",
size = 2
) +
# geom_errorbar(data = (test_dataset2 %>% group_by(mAb, conc) %>%
# summarise(AVG = mean(signal), SD = sd(signal)) %>%
# dplyr::filter(AVG != "NA") %>%
# mutate(top = AVG + SD, bottom = AVG - SD)), aes(x = conc, y = AVG, ymin = bottom, ymax = top)) +
stat_summary(fun.data = mean_sdl, geom = "errorbar") +
stat_smooth(method = "drm",
method.args=list(fct = L.4()),
se = F,
n = 300
)
plot_with_manual_errorbars <- ggplot(test_dataset2, aes(x = conc, y = signal, col = mAb)) +
scale_x_log10() +
stat_summary(fun.data = mean_se,
geom = "point",
size = 2
) +
geom_errorbar(data = (test_dataset2 %>% group_by(mAb, conc) %>%
summarise(AVG = mean(signal), SD = sd(signal)) %>%
dplyr::filter(AVG != "NA") %>%
mutate(top = AVG + SD, bottom = AVG - SD)), aes(x = conc, y = AVG, ymin = bottom, ymax = top)) +
# stat_summary(fun.data = mean_sdl, geom = "errorbar") +
stat_smooth(method = "drm",
method.args=list(fct = L.4()),
se = F,
n = 300
)
我认为来自Hmisc包的smean_sdl函数应该绘制平均值+/-与平均值的恒定标准偏差数。我不能做对的是什么?
感谢。
答案 0 :(得分:4)
来自?smean.sd
(也链接在?hmisc
上):
smean.sdl
计算平均值加上或减去常数乘以 标准差。
和
smean.sdl(x, mult=2, na.rm=TRUE)
因此默认值似乎是2个标准偏差。
使用fun.args = list(mult = 1)
的示例中显示的stat_summary
。