MedianCI(x, conf.level = 0.95, na.rm = FALSE,
method = c("exact", "boot"), R = 999)
"exact"
, "boot"
). Default is "exact"
. See Details.boot.ci
for details.SignTest
and is extracted from there.
The boot confidence interval type is calculated by means of boot.ci
with default type "basic"
.
Use sapply
, resp.apply
, to get the confidence intervals from a data.frame or from a matrix.wilcox.test
, MeanCI
, median
, HodgesLehmann
MedianCI(d.pizza$price, na.rm=TRUE)
MedianCI(d.pizza$price, conf.level=0.99, na.rm=TRUE)
t(round(sapply(d.pizza[,c("delivery_min","temperature","price")], MedianCI, na.rm=TRUE), 3))
MedianCI(d.pizza$price, na.rm=TRUE, method="exact")
MedianCI(d.pizza$price, na.rm=TRUE, method="boot")
Run the code above in your browser using DataLab