I currently use several methods for the analysis of the same dataset. I want to observe identical rules obtained by several classifiers. However, the output depends on the classification method, thus how to know if the obtained rules/tree contain the same information?
Example:
I want an automatic way to find that this rule :
A = 1 AND B = 0: 1
is identical to this tree:
A = 0: 0
A = 1
| B = 0: 1
| B = 1: 0