# NOT RUN {
M <- cbind(alpha=rnorm(200, 10, 5), # Gaussian distribution around mean = 10
beta=rlnorm(200, log(10), 1)) # log-normal distribution around median = 10
summary(M) # overview of the distribution
bootstrap.confint(M, method="normal") # normal approximation
bootstrap.confint(M, method="mad") # robust asymmetric MAD estimates
bootstrap.confint(M, method="empirical") # empirical confidence interval
bootstrap.confint(M, method="normal", data.frame=TRUE) # as data frame
# }
Run the code above in your browser using DataLab