gen.upset {parsec} | R Documentation |
Antichain generating a given upset
Description
The function returns the antichain generating the input upset Q
, given the incidence matrix z
of the poset.
Usage
gen.upset(z, Q = 1)
Arguments
z |
an incidence matrix. |
Q |
a vector ( |
Value
A boolean
vector.
See Also
Examples
lv <- c(2, 3, 2)
prof <- var2prof(varlen = lv)
z <- getzeta(prof)
up <- c("221", "131", "231", "222", "132", "232")
gen <- gen.upset(z, up)
plot(z, lwd = 1 + (rownames(prof$profiles)%in%up), col = 1 + gen,
sub = "bold = the upset, red = the antichain generating the upset")
[Package parsec version 1.2.7 Index]