gen.downset: Antichain generating a given downset

View source: R/gen.downset.R

gen.downsetR Documentation

Antichain generating a given downset

Description

The function returns the antichain generating the input downset Q, given the incidence matrix z of the poset.

Usage

gen.downset(z, Q = 1)

Arguments

z

an incidence matrix.

Q

a vector (boolean, numeric indexing elements, or character with elements' names) identifying the input downset.

Value

A boolean vector.

See Also

gen.upset

Examples

lv <- c(2, 3, 2)
prof <- var2prof(varlen = lv)

z <- getzeta(prof)
down <- c("111", "211", "112", "212")
gen <- gen.downset(z, down)

plot(z, lwd = 1 + (rownames(prof$profiles)%in%down), col = 1 + gen,
sub = "bold = the downset, red = the antichain generating the downset")

parsec documentation built on Aug. 19, 2023, 5:07 p.m.