search for: bootci

Displaying 1 result from an estimated 1 matches for "bootci".

Did you mean: bootc
2011 Feb 16
2
boot.ci error with large data sets
..., 5), rnorm(1000, 3)) test1 <- data.frame(rnorm(10000, 5), rnorm(10000, 3)) names(test) <- c("A", "B") names(test1) <- c("A", "B") # Getting the boot object and the CI, seem to works fine bootout <- boot(test, w.mean, R=1000, stype="i") (bootci <- boot.ci(bootout, conf = 0.95, type = "bca")) # Now with a bigger data set, boot.ci returns an error. bootout1 <- boot(test1, w.mean, R=1000, stype="i") (bootci1 <- boot.ci(bootout1, conf = 0.95, type = "bca")) Does anyone have an idea as to why this happen...