check_if_consistent_table#

skrough.checks.check_if_consistent_table(x: ndarray, y: ndarray) bool[source]#

Check if decision table is consistent.

Check if decision table is consistent, i.e., check if it is possible to discern objects with different decisions by means of conditional attributes. It is realized just as a simple wrapper around check_if_functional_dependency function using all available objects and attributes.

Parameters:
  • x – Input data table.

  • y – Input decisions.

Returns:

Indication whether the decision table is consistent.