JaRutkowski / DRGGen

Greedy approach for decision rules generation based on decision table
MIT License
0 stars 0 forks source link

[1] Inconsistency decision table #35

Open JaRutkowski opened 4 years ago

JaRutkowski commented 4 years ago

Implment an algorithm for generation inconsistency decision table from consistency data.

Using strategy - algorithm - of removing conditional attribute.

Algorithm: For each attribute the number of its occurrences is counted, then the attribute (or several) for which the value is the most common is removed. Example:

  1. For attribute f_0 - name: Alice - 5 occurrences Kathrine - 2 occurrences
  2. For attribute f_1 - eye colour: blue - 3 occurrences brown - 4 occurrences

Removed attribute - name - because its value - Alice - is the most common (5 occurrences) for decision table.

UI changes:

JaRutkowski commented 4 years ago

Issue partly done (#44).