An R package for interpreting confidence intervals.
The goal of confinterpret is to allow users to produce standardised descriptive interpretations from confidence intervals in R. The package supports researchers to focus more on generating estimates with associated ranges of uncertainty, rather than on single point-estimates, such as are common when conclusions are drawn from p-values.
The package includes (extensible) support for various test types, which are specified as sets of interpretations dependent on where the lower and upper confidence limits sit.
A collection of interpretation_set objects are provided in the package, to cover certain common situations where the confidence interval is of an effect size comparing two groups. Convenience / wrapper functions are provided for using each of these:
interpret_superiority()
interpret_noninferiority()
interpret_equivalence()
confinterpret is on CRAN, so you can install it in the normal way:
install.packages("confinterpret")
You can also install the development version of confinterpret from github with:
# install.packages("devtools")
::install_github("jimvine/confinterpret") devtools
This is a basic example which shows you how to solve a common problem:
# Set up a dummy confidence interval
<- matrix(c(0.15, 0.25), nrow = 1,
ci_above dimnames = list("estimate", c("2.5 %","97.5 %")))
<- interpret_superiority(ci_above)
ci_above_sup
# Access the short-form interpretation:
$interpretation_short
ci_above_sup
# Access the full interpretation:
$interpretation
ci_above_sup
# Access the full interpretation, marked up with markdown:
$interpretation_md
ci_above_sup
# Plot a chart of the interpretation (specify a nice colour-scheme first):
::palette(c("#FF671F99", "#F2A90099", "#0085CA99"))
grDevicesplot(ci_above_sup)