dexi_table {DEXiR} | R Documentation |
Create a representation of DEXi's decision table in R.
dexi_table(dim, low, high = NULL)
dim |
An integer vector, representing dimensions of the underlying decision space. |
low |
|
high |
|
length(dim)
-dimensional matrix of rule values, which are normally single integer values,
but might also be sets of values. Each set is represented by a numeric vector.
# Converting DEXi's value strings to R's numeric vectors.
dexi_table(c(2, 3), "011012")
dexi_table(c(2, 3), "011012", "012112")