1. Learn
  2. /
  3. Courses
  4. /
  5. Joining Data with data.table in R

Exercise

Inner join

Two data.tables are available in your workspace:

  • netflix: contains a selection of original series released by Netflix in 2017
  • imdb: contains average user ratings for a selection of TV shows and movies from IMDB.

Your goal is use the merge() function to perform an inner join to build a new data.table containing all series from netflix that have a rating in imdb.

Instructions 1/2

undefined XP
    1
    2

Remind yourself of the contents of both data.tables by printing them.