Learn R Programming

RoughSetKnowledgeReduction (version 0.1)

computeConsistencyMatrix: COMPUTE CONSISTENCY MATRIX

Description

It computes the consistency matrix of a decision table object. A Consistency Matrix object is made of each rule consistency check against the other rules in a Decision Table object. A couple of rules are inconsistent if they have the same conditions and different decision; if they have the same decision they are consistent; if they have different conditions no matter the decision they are consistent.

Usage

computeConsistencyMatrix(object)

Arguments

object
A Decision Table object

Value

References

Pawlak, Zdzislaw 1991 Rough Sets: Theoretical Aspects of Reasoning About Data Dordrecht: Kluwer Academic Publishing.

See Also

DecisionTable-class,checkConsistency

Examples

Run this code
exampleMatrix1 <- matrix(c(1,0,2,1,1,2,2,0,0,1,0,1,0,2,1,1,
2,1,0,0,2,0,1,1,2,1,1,2,0,1,1,0,0,2,1,2,1,1,2,1),ncol = 5)
conMatDT <- new(Class="DecisionTable",decisionTable = exampleMatrix1)
conMat <- computeConsistencyMatrix(conMatDT)

Run the code above in your browser using DataLab