A decision tree gives A _____ of the processing logic involved in decision making and the corresponding actions taken. The edges of A decision tree represent ______and the leaf nodes represent the _____ to be performed. code example
Example: decision tree
from sklearn.datasets import load_iris
>>> from sklearn import tree
>>> X, y = load_iris(return_X_y=True)
>>> clf = tree.DecisionTreeClassifier()
>>> clf = clf.fit(X, y)