I have a DataFrame like below
Name Mail-Body
Oliver I am recently doing AAA, BBB and BBB....
Jack Here is my report. It seemed AAA was.. so AAA is..
Jacob How are you doing? Next week we launch our AAA porject...
And with this DataFrame, I would like perform some data analysis. But I found out emails containing names such as "AAA" and "BBB"so many times tend to be just a scheduling notification and something like that so it is pretty much meaningless. So I would like to drop all the rows that contain the same string such as "AAA" and "BBB"more than 5 times in Mail-Body column.
Is there any pythonic way to drop all rows?