powered by
A utility function to calculation the uncertainty intervals in the mean of a vector. The function removes any missing data before the calculation.
bootMeanDF(x, conf.int = 0.95, B = 1000)
Returns a data frame with the mean, lower uncertainty, upper uncertainty and number of values used in the calculation
A vector from which the mean and bootstrap confidence intervals in the mean are to be calculated
The confidence interval; default = 0.95.
The number of bootstrap simulations
test <- rnorm(20, mean = 10) bootMeanDF(test)
Run the code above in your browser using DataLab