Setting keys
The netflix
and imdb
data.table
s are available in your workspace. Your goal is to set the keys for both data.table
s so that you can perform a series of joins without needing to specify the join keys each time.
Diese Übung ist Teil des Kurses
Joining Data with data.table in R
Anleitung zur Übung
- Set
title
as the key of bothnetflix
andimdb
usingsetkey()
(docs). - Inner join
imdb
tonetflix
without specifying theon
argument.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Set the keys
___
___
# Inner join
___