soundgen (version 1.5.0)

reportCI: Report CI

Description

Internal soundgen function

Usage

reportCI(n, digits = 2)

Arguments

n

numeric vector or matrix

digits

number of decimal points to preserve

Details

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

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataCamp Workspace