diff --git a/src/AI/DecisionTrees/DecisionTree.py b/src/AI/DecisionTrees/DecisionTree.py index 0cf24b0..9761b84 100644 --- a/src/AI/DecisionTrees/DecisionTree.py +++ b/src/AI/DecisionTrees/DecisionTree.py @@ -29,7 +29,7 @@ class DecisionTree(object): return branch.subtree.giveAnswer(example) @staticmethod - def printTree(tree, depth: int, indent: int = 20): + def printTree(tree, depth: int, indent: int = 50): if isinstance(tree.root, AttributeDefinition): print("NODE: {}".format(tree.root.name).rjust(indent * depth)) else: