1. Learn
  2. /
  3. Courses
  4. /
  5. Ensemble Methods in Python

Exercise

Introducing the movie database

Throughout this chapter, you'll be working with the TMDb (The Movie Database). This contains metadata on around 5000 movies.

The dataset is loaded and available to you as movies.

Your main objective is to predict movie revenue - more specifically, log-revenue, which is the normalized version of the revenue feature.

Use the .describe() method to explore this feature. You can also inspect the histogram to the right. What can you conclude?

Instructions

50 XP

Possible answers