printCI: Produce a formatted confidence interval

View source: R/printCI.R

printCIR Documentation

Produce a formatted confidence interval

Description

Takes a vector of length two and prints out a confidence interval in a user specified format.

Usage

printCI(x, fmt)

Arguments

x

A vector of length two containing the lower and upper bounds of a confidence interval

fmt

A format string to be used by sprintf. Note that this format string is repeated twice in the code for each bound of the confidence interval.

Value

A string containing the formatted CI

Author(s)

James Curran

See Also

sprintf

Examples

n = 100
x = rnorm(n)
mx = mean(x)
se = sd(x)/sqrt(n)
ci = mx + qnorm(c(0.025,0.975))*se
printCI(ci, '%5.2f')

dafs documentation built on April 11, 2022, 5:06 p.m.

Related to printCI in dafs...