多类分类规则的含义
Example: I have two classification rules (Refund is a predictor and Cheat is a binary response):
(Refund, No) → (Cheat, No) Support = 0.4, Confidence = 0.57
(Refund, No) → (Cheat, Yes) Support = 0.3, Confidence = 0.43
=> 多类分类规则:
(Refund, No) → (Cheat, No) v (Cheat, Yes)
在对测试数据进行预测分类时,会优先选择(Cheat, No),那么为什么我们这里需要在多类分类规则中有(Cheat, Yes)呢?