Learn R Programming

multiplex (version 4.0)

fltr: Principal Order Filters

Description

A function to find principal order filters and order ideals in a partial order structure.

Usage

fltr(x, PO, ideal = FALSE, rclos)

Value

Returns a named list containing the elements in the upset or downset of the principal order filter or order ideal associated with the reference element in the partial order.

Arguments

x

(integer or character) Reference element in the partial order.

PO

An array for the partial order or a “Partial.Order” class object.

ideal

(logical) Is the “filter” an order ideal?

rclos

(optional and logical) Apply reflexive closure to the outcome?

Details

This function identifies the principal order filter or principal order ideal of an element in a partial order. The input is typically either a concept, an object, or an attribute, together with the corresponding partial order of concepts derived from Galois derivations. If the reference element is a concept, specify it as a positive integer representing the concept label. Alternatively, an object or attribute may be given by its character name, provided it appears among the dimension labels of the partially labelled order table. When the reference element is an object or attribute, principal order filters with full labelling are not supported, and in that case use the corresponding concept number instead.

References

Ganter, B. and R. Wille Formal Concept Analysis -- Mathematical Foundations. Springer. 1996.

See Also

galois, partial.order, diagram.

Examples

Run this code
# create a data frame
dfr <- data.frame(x=1:3, y=5:7)

# partial ordering of concepts
PO <- dfr |> 
  galois() |> 
  partial.order(type="galois")

# order filter for the first element
fltr(1, PO, rclos=TRUE)

Run the code above in your browser using DataLab