union_closed {BaseSet} | R Documentation |
Union closed sets
Description
Tests if a given object is union-closed.
Usage
union_closed(object, ...)
## S3 method for class 'TidySet'
union_closed(object, sets = NULL, ...)
Arguments
object |
A TidySet object. |
... |
Other named arguments passed to |
sets |
The name of the sets to be used. |
Value
A logical value: TRUE
if the combinations of sets produce already
existing sets, FALSE
otherwise.
Examples
l <- list(A = "1",
B = c("1", "2"),
C = c("2", "3", "4"),
D = c("1", "2", "3", "4")
)
TS <- tidySet(l)
union_closed(TS)
union_closed(TS, sets = c("A", "B", "C"))
union_closed(TS, sets = c("A", "B", "C", "D"))
[Package BaseSet version 0.9.0 Index]