I have a dataframe that has the column cast which contains multiple actors from a movie. How do I count the number of times each actor appears in the dataset This is a snippet of what the column looks like
df['cast'][:3]
0 João Miguel, Bianca Comparato, Michel Gomes, R...
1 Demián Bichir, Héctor Bonilla, Oscar Serrano, ...
2 Tedd Chan, Stella Chung, Henley Hii, Lawrence ...
Name: cast, dtype: object
Can anyone help?