Below I attached a small part of the dataframe I have. It's about the Netflix shows.
I want to explode the 'country' column in this multi-column dataframe.
Why I want to do this is to find out the most popular countries('country') where the shows/movies were filmed in the next step after exploding.
As you can see in the attached picture below, the last row with 'title' Zombie Dumb has a dropped NA value.
I've tried both:
data.explode('country')
data.country.explode()
and assigning dataframe to them also didn't help.
Please help me to understand why explode wouldn't work and how can i achieve this?