我有一个使用 dput 上传的数字向量 (.../code/MyData.Rdata)。
我想获得 bca ci,所以我编写了以下代码:
my.mean <- function(dat, idx){
return (mean(dat[idx], na.rm = TRUE))
}
boot.out<-boot(data=my.data, statistic = my.mean, R=1000)
但是当我运行以下命令时,我得到了这个:
> boot.ci(boot.out)
Error in bca.ci(boot.out, conf, index[1L], L = L, t = t.o, t0 = t0.o, :
estimated adjustment 'a' is NA
In addition: Warning message:
In boot.ci(boot.out) : bootstrap variances needed for studentized intervals
有人可以帮我找出导致此错误的原因吗?感谢您的帮助!