gpt4 book ai didi

r - R 中具有 95% 置信区间的箱线图

转载 作者:行者123 更新时间:2023-12-05 05:22:29 24 4
gpt4 key购买 nike

我正在尝试在 R 中生成箱线图,以显示均值的 95% 置信区间,但我找不到任何方法来显示此统计数据。我通常使用 ggplot2 在 R 中进行数据可视化,但如有必要,我愿意使用其他包。有人对如何执行此操作有任何建议吗?谢谢。

最佳答案

这是一个想法,带有正常的 dist:

set.seed(123)
a = cumsum(rnorm(100))
n=length(a)
mm=mean(a)
dd=sd(a)
error <- qnorm(0.975)*dd/sqrt(n)

inf <- mm-error
sup <- mm+error

boxplot(a,col=3)
lines(c(0.75,1.25),c(inf,inf),col=4)
lines(c(0.75,1.25),c(mm,mm),col=2,lwd=2)
lines(c(0.75,1.25),c(sup,sup),col=4)
legend("topleft", c("95% CI", "Mean"), lty=1,col = c(4, 2),bty ="n")

enter image description here

关于r - R 中具有 95% 置信区间的箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40390075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com