Description Usage Arguments Value Author(s) References See Also Examples
It computes the support and consistency of the rules in the Value Reduct object. For each rule in the Value Reduct object, support is the number of decision table rules to which the value reduct rule conditions apply divided by the number of rules in the decision table object. For each rule in the Value Reduct object, consistency is the number of rules to which the value reduct condition and decision applies divided by the number of rules of the Decision Table object to which the value reduct rule conditions apply.
1 | computeSupportConsistency(object, decisionTable)
|
object |
A Value Reduct object |
decisionTable |
A Decision Table object |
It returns a numeric matrix which contains the Value Reduct object representation and the support and consistency values of each rule.
Alber Sanchez alber.sanchez@uni-muenster.de
Pawlak, Zdzislaw 1991 Rough Sets: Theoretical Aspects of Reasoning About Data Dordrecht: Kluwer Academic Publishing.
ValueReduct-class
,classifyDecisionTable
1 2 3 4 5 6 7 8 9 10 | exampleMatrix2 <- matrix(c(1,1,0,1,1,2,2,0,0,0,1,1,1,2,0,
0,0,0,0,0,2,1,0,0,1,2,2,2,1,1,0,0,2,2,2),ncol = 5)
dt <- new(Class="DecisionTable",decisionTable = exampleMatrix2)
dtUnique <- removeDuplicatedRulesDT(dt)
cr <- new(Class="ConditionReduct",decisionTable = dtUnique,columnIds=c(1,2,4,5))
cr <- removeDuplicatedRulesCR(cr)
vr <- computeValueReduct(cr)
vr <- removeDuplicatedRulesVR(vr)
mat <- computeSupportConsistency(vr,dt)
print(mat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.