Learn R Programming

MKmisc (version 1.6)

print.confint: Print Method for Confidence Intervals

Description

Printing objects of class "confint" by a simple print method.

Usage

# S3 method for confint
print(x, digits = getOption("digits"), prefix = "\t", ...)

Arguments

x

object of class "confint".

digits

number of significant digits to be used.

prefix

string, passed to strwrap for displaying the method component of the mpe.test object.

further arguments to be passed to or from methods.

Value

the argument x, invisibly, as for all print methods.

Details

A confint object is just a named list of confidence intervals and respective (point) estimates.

See Also

print.power.htest

Examples

Run this code
# NOT RUN {
x <- rnorm(20)
(CI <- normCI(x))
print(CI, digits = 3)
# }

Run the code above in your browser using DataLab