Learn R Programming

pim (version 2.0.2)

print: Print methods for the different object types

Description

Printing pim, pim.environment, pim.formula and pim.poset objects.

Usage

print(x, ...)

# S4 method for pim print(x, digits = max(3L, getOption("digits") - 3L), show.vcov = FALSE, ...)

# S4 method for pim.environment print(x, digits = max(3L, getOption("digits") - 3L), n = 6L, ...)

# S4 method for pim.poset print(x, digits = max(3L, getOption("digits") - 3L), n = 6L, ...)

# S4 method for pim.formula print(x, digits = max(3L, getOption("digits") - 3L), ...)

Arguments

x

the object

...

arguments passed to other methods. Currently ignored

digits

an integer that defines the number of digits printed

show.vcov

a logical value indicating whether the variance- covariance matrix should be shown or not. Defaults to FALSE

n

number of observations shown by print

Value

invisible NULL

Examples

Run this code
# NOT RUN {
data(FEVData)
Model <- pim(FEV~ Smoke*Sex , data=FEVData)
print(Model)
print(penv(Model))
# You get the drift

# }

Run the code above in your browser using DataLab