I have this simple code:
clf = tree.DecisionTreeClassifier()
clf = clf.fit(X, y)
tree.plot_tree(clf.fit(X, y))
plt.show()
Run Code Online (Sandbox Code Playgroud)
And the result I get is this graph:

How do I make this graph legible? I'm using PyCharm Professional 2019.3 as my IDE.