print.ci {Publish} | R Documentation |
Print confidence intervals
Description
Print confidence intervals
Usage
## S3 method for class 'ci'
print(x, se = FALSE, print = TRUE, ...)
Arguments
x |
Object containing point estimates and the corresponding confidence intervals |
se |
If |
print |
Logical: if |
... |
passed to summary.ci |
Details
This format of the confidence intervals is user-manipulable.
Value
A string: the formatted confidence intervals
Author(s)
Thomas A. Gerds <tag@biostat.ku.dk>
See Also
ci plot.ci formatCI summary.ci
Examples
library(lava)
m <- lvm(Y~X)
m <- categorical(m,Y~X,K=4)
set.seed(4)
d <- sim(m,24)
ci.mean(Y~X,data=d)
x <- ci.mean(Y~X,data=d)
print(x,format="(l,u)")
[Package Publish version 2023.01.17 Index]