gpt4 book ai didi

python - 如何在具有特定格式的列表中获取相关功能?

转载 作者:太空宇宙 更新时间:2023-11-04 01:55:08 25 4
gpt4 key购买 nike

我正在学习 Pandas 。我需要以下方面的帮助。我试图从相关矩阵中找出最高相关的特征。

# Iris Dataset
features = ['sepal_length','sepal_width','petal_length','petal_width','class']
data = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data",\
header = None,\
names = features)
correlation = data.corr()
c = correlation.where(np.triu(np.ones(correlation.shape),k=1).astype(np.bool)).stack().sort_values(ascending = False)
highest = c[c>0.5]
print(highest)
print(highest.index)

以上片段的输出是:

petal_length  petal_width     0.962757
sepal_length petal_length 0.871754
petal_width 0.817954
dtype: float64
MultiIndex(levels=[['sepal_length', 'sepal_width', 'petal_length', 'petal_width'], ['sepal_length', 'sepal_width', 'petal_length', 'petal_width']],
labels=[[2, 0, 0], [3, 2, 3]])

是否有可能将“最高”系列的输出转换为具有以下指定格式的列表?

list = [['petal_length','petal_width',0.962757],['sepal_length','petal_length',0.871754]['sepal_length','petal_width',0.817954]]

通俗地说,我需要系列列表中的索引列(两列)。

我尝试了这个并且它起作用了。但我需要上面的列表:

length = highest.shape[0]
list = []
for i in range(length):
list.append(highest.index[i])
print('list =',list)

输出:

list = [('petal_length', 'petal_width'), ('sepal_length', 'petal_length'), ('sepal_length', 'petal_width')]

提前致谢。

最佳答案

是的,使用:

highest.reset_index().values.tolist()

输出:

[['petal_length', 'petal_width', 0.9627570970509667],
['sepal_length', 'petal_length', 0.8717541573048719],
['sepal_length', 'petal_width', 0.8179536333691635]]

关于python - 如何在具有特定格式的列表中获取相关功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56974879/

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