gpt4 book ai didi

python-2.7 - DICT() 和 MATPLOTLIB?

转载 作者:行者123 更新时间:2023-12-02 03:14:17 25 4
gpt4 key购买 nike

我创建了一个字典来匹配 sklearn 中决策树的特征重要性与我的 df 中特征的相应名称。下面是代码:

   importances = clf.feature_importances_
feature_names = ['age','BP','chol','maxh',
'oldpeak','slope','vessels',
'sex_0.0','sex_1.0',
'pain_1.0','pain_2.0','pain_3.0','pain_4.0',
'bs_0.0','bs_1.0',
'ecg_0.0','ecg_1.0','ecg_2.0',
'ang_0.0','ang_1.0',
'thal_3.0','thal_6.0','thal_7.0']
CLF_sorted = dict(zip(feature_names, importances))

在输出中我得到了这个:

   {'BP': 0.053673644739136502,
'age': 0.014904980747733202,
'ang_0.0': 0.0,
'ang_1.0': 0.0,
'bs_0.0': 0.0,
'bs_1.0': 0.0,
'chol': 0.11125922817930389, ...}

如我所料。我有两个问题要问你:

  1. 我如何创建一个条形图,其中 x 轴代表 feature_names,y 轴代表相应的重要性

  2. 如果可能的话,我该如何对条形图进行降序排序?

最佳答案

试试这个:

import pandas as pd

df = pd.DataFrame({'feature': feature_names , 'importance': importances})
df.sort_values('importance', ascending=False).set_index('feature').plot.bar(rot=0)

演示:

d ={'BP': 0.053673644739136502,
'age': 0.014904980747733202,
'ang_0.0': 0.0,
'ang_1.0': 0.0,
'bs_0.0': 0.0,
'bs_1.0': 0.0,
'chol': 0.11125922817930389}

df = pd.DataFrame({'feature': [x for x in d.keys()], 'importance': [x for x in d.values()]})

In [63]: import matplotlib as mpl

In [64]: mpl.style.use('ggplot')

In [65]: df.sort_values('importance', ascending=False).set_index('feature').plot.bar(rot=0)
Out[65]: <matplotlib.axes._subplots.AxesSubplot at 0x8c83748>

enter image description here

关于python-2.7 - DICT() 和 MATPLOTLIB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38011435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com