Get startedGet started for free

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.

This exercise is part of the course

Joining Data with data.table in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Full join netflix and imdb
___(netflix, imdb, by = "___", ___)
Edit and Run Code