gpt4 book ai didi

python - 为列表中的元素过滤 Pandas DataFrame

转载 作者:太空狗 更新时间:2023-10-30 02:43:37 26 4
gpt4 key购买 nike

<分区>

我有一个包含值和附加信息的 pandas DataFrame。我希望能够提取仅属于一种信息的值。我事先不知道将查询哪些值和多少值。因此,有可能只调用一次带有附加信息“foo”的值,有时带有附加信息“bar”和“baz”,因此使用简化的 DataFrame

import pandas as pd
df = pd.DataFrame(
[[1, 'foo'], [2, 'bar'], [3, 'baz']], columns=['value', 'id'])

我试过了

result = df[df.id in ['foo', 'bar']]

但我只是得到一个 ValueError:Series 的真值不明确。使用 a.empty、a.bool()、a.item()、a.any() 或 a.all()。但是我无法获取 any()-Function 来给我结果...。

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