print: Print methods for the different object types

Description Usage Arguments Value Examples

Description

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

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
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 FALSE

n

number of observations shown by print

Value

invisible NULL

Examples

1
2
3
4
5
data(FEVData)
Model <- pim(FEV~ Smoke*Sex , data=FEVData)
print(Model)
print(penv(Model))
# You get the drift

pim documentation built on May 2, 2019, 6:51 p.m.