gpt4 book ai didi

python - pandas DataFrame 对角线

转载 作者:IT老高 更新时间:2023-10-28 20:51:10 26 4
gpt4 key购买 nike

什么是获取正方形DataFrame的对角线的有效方法。我希望结果是一个 Series 和一个 MultiIndex 有两个级别,第一个是 DataFrame 的索引,第二个级别是DataFrame 的列。

设置

import pandas as pd
import numpy as np

np.random.seed([3, 1415])
df = pd.DataFrame(np.random.rand(3, 3) * 5,
columns = list('abc'),
index = list('ABC'),
dtype=np.int64
)

我想看看这个:

print df.stack().loc[[('A', 'a'), ('B', 'b'), ('C', 'c')]]

A a 2
B b 2
C c 3

最佳答案

如果你不介意使用 numpy,你可以使用 numpy.diag

pd.Series(np.diag(df), index=[df.index, df.columns])

A a 2
B b 2
C c 3
dtype: int64

关于python - pandas DataFrame 对角线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37310264/

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