Full join
Using the same data.table
s as the previous exercise, this time use merge()
to perform a full join to build a new data.table
containing all rows present in either netflix
or imdb
.
Diese Übung ist Teil des Kurses
Joining Data with data.table in R
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Full join netflix and imdb
___(netflix, imdb, by = "___", ___)