print {pim} | R Documentation |
Print methods for the different object types
Description
Printing pim
, pim.environment
, pim.formula
and
pim.poset
objects.
Usage
print(x, ...)
## S4 method for signature 'pim'
print(x, digits = max(3L, getOption("digits") - 3L), show.vcov = FALSE, ...)
## S4 method for signature 'pim.environment'
print(x, digits = max(3L, getOption("digits") - 3L), n = 6L, ...)
## S4 method for signature 'pim.poset'
print(x, digits = max(3L, getOption("digits") - 3L), n = 6L, ...)
## S4 method for signature '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 |
n |
number of observations shown by |
Value
invisible NULL
Examples
data(FEVData)
Model <- pim(FEV~ Smoke*Sex , data=FEVData)
print(Model)
print(penv(Model))
# You get the drift
[Package pim version 2.0.2 Index]