Full join
Using the same data.tables 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.
Cet exercice fait partie du cours
Joining Data with data.table in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Full join netflix and imdb
___(netflix, imdb, by = "___", ___)