%entails% {fcaR} | R Documentation |
Entailment between implication sets
Description
Entailment between implication sets
Usage
imps %entails% imps2
Arguments
imps |
( |
imps2 |
( |
Value
A logical vector, where element k is TRUE
if the
k-th implication in imps2
follows from imps
.
Examples
fc <- FormalContext$new(planets)
fc$find_implications()
imps <- fc$implications[1:4]$clone()
imps2 <- fc$implications[3:6]$clone()
imps %entails% imps2
[Package fcaR version 1.2.2 Index]