View source: R/summary.poset.R
summary.poset | R Documentation |
Method of the summary
function for objects of class poset
.
## S3 method for class 'poset'
summary(object, ...)
object |
an object of class |
... |
further arguments passed to or from other methods. |
An S3 object of class summary_poset
listing and counting the poset elements, their strict dominances and their incomparabilities.
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]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.