printCI {dafs} | R 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 |
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')
[Package dafs version 1.0-38 Index]