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.
Este exercício faz parte do curso
Joining Data with data.table in R
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Full join netflix and imdb
___(netflix, imdb, by = "___", ___)