10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3349e65 commit a21d680Copy full SHA for a21d680
examples/ensemble/plot_forest_iris.py
@@ -107,7 +107,7 @@
107
plt.subplot(3, 4, plot_idx)
108
if plot_idx <= len(models):
109
# Add a title at the top of each column
110
- plt.title(model_title)
+ plt.title(model_title, fontsize=9)
111
112
# Now plot the decision boundary using a fine mesh as input to a
113
# filled contour plot
@@ -154,7 +154,7 @@
154
edgecolor='k', s=20)
155
plot_idx += 1 # move on to the next plot in sequence
156
157
-plt.suptitle("Classifiers on feature subsets of the Iris dataset")
+plt.suptitle("Classifiers on feature subsets of the Iris dataset", fontsize=12)
158
plt.axis("tight")
159
-
+plt.tight_layout(h_pad=0.2, w_pad=0.2, pad=2.5)
160
plt.show()
0 commit comments