reportCI | R Documentation |
Internal soundgen function
reportCI(n, digits = 2, suffix = NULL)
n |
numeric vector or matrix |
digits |
number of decimal points to preserve |
Takes a numeric vector or matrix with three elements / columns: fit, lower quantile from a CI, and upper quantile from a CI. For each row, it prints the result as fit and CI in square brackets
n = rnorm(100)
soundgen:::reportCI(quantile(n, probs = c(.5, .025, .975)))
a = data.frame(fit = c(3, 5, 7),
lwr = c(1, 4, 6.5),
upr = c(5, 6, 7.1))
soundgen:::reportCI(a, 1)
soundgen:::reportCI(a, 1, ' cm')
soundgen:::reportCI(a, 1, '%, 95% CI')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.