计算pandas数据帧中字符的最大出现次数

时间:2017-11-18 04:00:57

标签: python pandas

我正在寻找最大量的!在数据框中我并非100%确定我是否拥有正确的代码:

finefoods_df['Review'].max().count("!")

1 个答案:

答案 0 :(得分:2)

使用str.count然后查找其max

finefoods_df['Review'].str.count('!').max()

<强>演示

df
         A
0      hi!
1  hello!!
2   bye!!!

df.A.str.count('!')

0    1
1    2
2    3
Name: A, dtype: int64

df.A.str.count('!').max()
3