xgboost.plot_importance(model, importance_type='gain')
このプロットのサイズを変更することはできません。この図を適切なサイズで保存して、PDFで使用できるようにします。 figize
のように似たものが欲しい
plot_importance
Axes
オブジェクトを返す のように見えます
ax = xgboost.plot_importance(...)
fig = ax.figure
fig.set_size_inches(h, w)
また、軸を渡すことができるように見えます
fig, ax = plt.subplots(figsize=(h, w))
xgboost.plot_importance(..., ax=ax)