print.poset | R Documentation |
print
prints the list of poset elements and all of the strict dominances in it.
## S3 method for class 'poset'
print(x, max = NULL, ...)
x |
an object of class |
max |
a non-null value for max specifies the approximate maximum number of entries to be printed. The default, NULL, uses |
... |
further arguments passed to or from other methods. |
nothing
dom <- matrix(c(
"a", "b",
"c", "b",
"b", "d"
), ncol = 2, byrow = TRUE)
p <- poset(x = dom)
print(p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.