我使用Xgboost,希望打印各种功能的重要性。我使用以下代码:
from xgboost import plot_importance
plt.rcParams["figure.figsize"] = (14, 12)
plot_importance(booster=model._Booster)
我注意到的是,只有当特征为非零时,它才显示出特征的杂质。
Is there a way to make it print importance of all even if some of them have zero importance?