创建一个字典,其中包含来自pandas数据框架的一个序列的字典



我有一个数据帧(df)看起来像这样:

<表类> 指数 Cell_1 Cell_2 tbody><<tr>Metal_10.20.1Metal_20.40.2Metal_30.30.3Metal_40.50.7

是,字典理解在这里有帮助:

In [362]: {cell: {"processed_result": series}
for cell, series in df.to_dict("series").items()}
Out[362]:
{'Cell_1': {'processed_result': Metal_1    0.2
Metal_2    0.4
Metal_3    0.3
Metal_4    0.5
Name: Cell_1, dtype: float64},
'Cell_2': {'processed_result': Metal_1    0.1
Metal_2    0.2
Metal_3    0.3
Metal_4    0.7
Name: Cell_2, dtype: float64}}

在value"作为推导式的一部分,我们放入了一个长度为1的、"processed_result"键的字典。

相关内容

  • 没有找到相关文章

最新更新