Tengo un vector de números que he subido aquí (alrig.com/code/MyData.Rdata) usando dput.
Me gustaría obtener el bca ci así que escribí este código:
my.mean <- function(dat, idx){
return (mean(dat[idx], na.rm = TRUE))
}
boot.out<-boot(data=my.data, statistic = my.mean, R=1000)
Pero cuando ejecuto lo siguiente, obtengo esto:
> 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
¿Alguien puede ayudarme a descubrir qué está causando este error? ¡Gracias por tu ayuda!