gpt4 book ai didi

python - 订购数据框并按词搜索

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

当单词 Sony 出现在 csv 行中时,我正在使用此代码提取一些评论。现在我想知道如何按列 id 的顺序对搜索进行排序。

这是csv结构

id review
#1 Some text ...
#2 Some text ...

df = pd.read_csv('./file.csv', delimiter= '\t', lineterminator="\n")
print df[df['review\r'].str.contains("Sony")]

最佳答案

我想你需要sort_values :

df[df['review\r'].str.contains("Sony")].sort_values('id')

关于python - 订购数据框并按词搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43454253/

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