gpt4 book ai didi

python - Pandas 数据框 : how to sentence into words and select rows that have more than 10 words?

转载 作者:太空宇宙 更新时间:2023-11-04 08:26:40 24 4
gpt4 key购买 nike

我有一个 DataFrame,每行一个句子。但是句子的长度不一样。我想选择那些包含超过 10 个单词的行,比如

df = df.loc[len(df[src].str.split()) > 10]

但这会引发 Key 为 True 的错误。如何做到这一点?

最佳答案

试试series.str.len() :

df[df['src'].str.split().str.len() > 10]

关于python - Pandas 数据框 : how to sentence into words and select rows that have more than 10 words?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56395124/

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