as.binaryMatrix {kst} | R Documentation |
Computes the matrix representation of a knowledge structure.
as.binaryMatrix(x)
x |
An R object of class |
as.binaryMatrix
takes an arbitrary knowledge structure in set
representation and computes its matrix form.
An R object of class matrix
.
kst <- kstructure(set(set("a"), set("a","b"), set("a","c"), set("d","e"),
set("a","b","d","e"), set("a","c","d","e"), set("a","b","c","d","e")))
as.binaryMatrix(kst)