print.summary_poset: Method for the print function that shows the poset summary

View source: R/print.summary_poset.R

print.summary_posetR Documentation

Method for the print function that shows the poset summary

Description

print prints the poset summary.

Usage

## S3 method for class 'summary_poset'
print(x, ...)

Arguments

x

an object of class summary_poset.

...

further arguments passed to or from other methods.

Value

nothing

See Also

summary.poset

Examples

dom <- matrix(c(
  "a", "b",
  "c", "b",
  "b", "d"
), ncol = 2, byrow = TRUE)
p <- poset(x = dom)
summary(p)

summary(chain(1:4))
summary(antiChain(LETTERS[1:5]))

POSetR documentation built on Jan. 17, 2023, 5:18 p.m.