Scenario |
Type |
Detail |
Basic |
Basic Path |
This part of program is responsible for rule generation. The most significant procedures are GenerateSubsets and CountConfidence. Rules are generated from found large sets. Each such large set is recursively split by GenerateSubsets in two subsets A,B.Confidence of rule A->B is counted and compared with defined minimal confidence (represented by variable MinConf). Confidence A->B is defined as P(B|A)= # of rows containing both set B and A /# rows containing A. Rule which confidence exceeds minimal confidence is inserted to the result and finally shown in result grid called GResult. |
|