October 2017
Intermediate to advanced
532 pages
16h 10m
English
>>> movie = pd.read_csv('data/movie.csv')>>> movie2 = movie[['movie_title', 'imdb_score', 'budget']]>>> movie2.head()

>>> movie2.nlargest(100, 'imdb_score').head()

>>> movie2.nlargest(100, 'imdb_score').nsmallest(5, 'budget')
Read now
Unlock full access