Session Ready
Exercise

Combining popularity and reviews

In the past two exercises, you have used the two most common non-personalized recommendation methods to find movies to suggest. As you may have noticed, they both have their weaknesses.

Finding the most frequently watched movies will show you what has been watched, but not how people explicitly feel about it. However, finding the average of reviews has the opposite problem where we have customers' explicit feedback, but individual preferences are skewing the data.

In this exercise, you will combine the two previous methods to find the average rating only for movies that have been reviewed more than 50 times.

Instructions 1/3
undefined XP
  • 1
  • 2
  • 3
  • Generate a list of the names of the movies appearing more than 50 times in user_ratings_df and store it as popular_movies.