xgboost.plot_importance(model, importance_type=\'gain\')
I am not able to change size of this plot. I want to save this figure with proper size so that
It looks like plot_importance return an Axes object
plot_importance
ax = xgboost.plot_importance(...) fig = ax.figure fig.set_size_inches(h, w)
It also looks like you can pass an axes in
fig, ax = plt.subplots(figsize=(h, w)) xgboost.plot_importance(..., ax=ax)