Learn R Programming

MKmisc (version 1.9)

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", ...)

Value

the argument x, invisibly, as for all print

methods.

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.

Details

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

See Also

Examples

Run this code
x <- rnorm(20)
(CI <- normCI(x))
print(CI, digits = 3)

Run the code above in your browser using DataLab