I have the below bar chart generated by using plot_importance
.
I increase the fontsize of title
, xlabel
, ylabel
, xticks
and yticks
by using below code snippet:
plot_importance(clf)
plt.xticks(fontsize=18)
plt.yticks(fontsize=18)
plt.title("Feature importance", fontsize=16)
plt.xlabel("F score", fontsize=16)
plt.ylabel("Features", fontsize=16)
But I also need to increase the blue bar width and corresponding score fontsize inside the plot.
How do i do that?