शुरू करेंमुफ़्त में शुरू करें

Inner join with the data.table syntax

In the last exercise, you right joined population to capitals. The result contained all rows from population and had some NAs. In this exercise, you will perform an inner join instead, retaining rows only from both the tables.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Joining Data with data.table in R

पाठ्यक्रम देखें

अभ्यास निर्देश

Inner join population to capitals using the data.table syntax.

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Inner join with the data.table syntax
___[population, ___, ___]
कोड संपादित करें और चलाएँ