July 2018
Beginner to intermediate
146 pages
3h 39m
English
Let's start by loading our new data into the existing Jupyter Notebook:
# Load the keywords and credits filescred_df = pd.read_csv('../data/credits.csv')key_df = pd.read_csv('../data/keywords.csv')#Print the head of the credit dataframecred_df.head()

#Print the head of the keywords dataframekey_df.head()

We can see that the cast, crew, and the keywords are in the familiar list of dictionaries form. Just like genres, we have to reduce them to a string or a list of strings.
Before we do this, however, we will ...
Read now
Unlock full access