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.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Joining Data with data.table in R
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Full join netflix and imdb
___(netflix, imdb, by = "___", ___)