Description Usage Arguments Details Value Examples
Partial Order in Sets and Concepts
1 | C1 %<=% C2
|
C1 |
A |
C2 |
A |
Both C1
and C2
must be of the same class.
Returns TRUE
if concept C1
is subconcept of C2
or if set C1
is subset of C2
.
1 2 3 4 5 6 7 8 | # Build two sparse sets
S <- SparseSet$new(attributes = c("A", "B", "C"))
S$assign(A = 1)
T <- SparseSet$new(attributes = c("A", "B", "C"))
T$assign(A = 1, B = 1)
# Test whether S is subset of T
S %<=% T
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.