gpt4 book ai didi

python - 获取行和列 pandas bool 数据框

转载 作者:太空宇宙 更新时间:2023-11-03 20:01:59 26 4
gpt4 key购买 nike

我有一个 bool Pandas数据框(所有值都是TrueFalse),我需要获取每一行的列其中值为 True

知道我该怎么做吗?

最佳答案

使用[np.where(row)[0]作为索引,df.iterrows()中的行]它将生成一个 numpy 数组列表,每行中都有 True 值的索引。添加 .tolist() 作为列表列表。

无法堆叠结果数组,因为它们可能具有不同的长度。

示例:

df = pd.DataFrame([[True, False],[False,True],[True,True], [False,False]])
[np.where(row)[0].tolist() for _, row in df.iterrows()]

[[0], [1], [0, 1], []]

关于python - 获取行和列 pandas bool 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59184199/

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