标签: r bootstrapping confidence-interval
我是新用户,使用启动包时遇到问题。我想做的就是使用自举来产生一个数字向量的均值周围的置信区间,例如:
x <- rnorm(100, 1, .5)
任何提示?
答案 0 :(得分:11)
以下是否足够?
library(boot) x <- rnorm(100, 1, .5) b <- boot(x, function(u,i) mean(u[i]), R = 999) boot.ci(b, type = c("norm", "basic", "perc"))