gpt4 book ai didi

python-3.x - 如何删除包含空列表的数据框中的行?

转载 作者:行者123 更新时间:2023-12-04 13:01:54 25 4
gpt4 key购买 nike

我创建了一个包含 3 列的数据框,第三个包含列表,我想删除该单元格中包含空列表的行。

我试过

df[df.numbers == []] and df[df.numbers == null]
but nothing works.
name    country    numbers

Lewis Spain [1,4,6]
Nora UK []
Andrew UK [3,5]


结果将是一个没有 Nora 行的数据框

最佳答案

使用 series.str.len() 检查列表中元素的长度,然后过滤掉它等于 0 的地方:

df[~df.numbers.str.len().eq(0)]
     name country    numbers
0 Lewis Spain [1, 4, 6]
2 Andrew UK [3, 5]

关于python-3.x - 如何删除包含空列表的数据框中的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57060953/

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