如何根据我想使用熊猫的流派对数据框进行分类

时间:2019-11-18 08:21:40

标签: python pandas dataframe

我有一个带有不同类型游戏的.csv数据文件。 .csv文件中有带有3或4个流派标签的游戏​​。如何提取只有4个流派参数中的2个的行?我只想提取类型为GamesStrategy的行?

我已经尝试df2 = df1[df1['Average User Rating']>4]来提取高于4的评分,但是我无法找出一种从类型中提取的方法。请帮助我。

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试:

df3 = df1[df1['Genres'].str.contains('Games') & df1['Genres'].str.contains('Strategy') & (df1['Genres'].str.count(',') == 1)]