Getting Ratings by Gender
Learn how to use the functions in Python that reshape a data set.
We'll cover the following...
To get the ratings by size, look at line 19 of the code widget below.
We want to avoid movies that don’t have many reviews as that would skew our data. So we’re only selecting movies that have at least 250 reviews. This is an arbitrary number and will help us filter out only popular movies.
The next feature ...