Left join
In this exercise, you will practice left joins! In a left join, rows from only the left (or the first) data.table will be retained.
Both netflix and imdb are available in your workspace.
This exercise is part of the course
Joining Data with data.table in R
Exercise instructions
Use the merge() function to left join imdb to netflix.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Left join imdb to netflix
___