## ---- include = FALSE--------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>", warning = FALSE, message = FALSE ) ## ----------------------------------------------------------------------------- library(confintr) set.seed(1) # Mean ci_mean(1:100) ci_mean(1:100, type = "bootstrap") # 95% value at risk ci_quantile(rexp(1000), q = 0.95) # IQR ci_IQR(rexp(100)) # Correlation ci_cor(iris[1:2], method = "spearman", type = "bootstrap") # Proportions ci_proportion(10, n = 100, type = "Wilson") ci_proportion(10, n = 100, type = "Clopper-Pearson") # R-squared fit <- lm(Sepal.Length ~ ., data = iris) ci_rsquared(fit, probs = c(0.05, 1)) # Kurtosis ci_kurtosis(1:100) # Mean difference ci_mean_diff(10:30, 1:15) ci_mean_diff(10:30, 1:15, type = "bootstrap") # Median difference ci_median_diff(10:30, 1:15)