powered by
Determine standard error (sd) of median by bootstraping for multiple sets of data (rows in input matrix 'dat'). Note: The package boot must be installed from CRAN.
colMedSds(dat, nBoot = 99, silent = FALSE, debug = FALSE, callFrom = NULL)
This function returns a (numeric) vector with estimated standard errors
(numeric) matix
(integer, length=1) number if iterations
(logical) suppress messages
(logical) additional messages for debugging
(character) allow easier tracking of messages produced
boot
set.seed(2016); dat1 <- matrix(c(runif(200) +rep(1:10,20)), ncol=10) colMedSds(dat1)
Run the code above in your browser using DataLab