# Visualise the Decision Tree plt.figure(figsize=(35,40)) # Set plot size (denoted in inches) tree.plot_tree(model, # Create plot fontsize = 10) # Set fontsize plt.show() # Display plot