НачатьНачать бесплатно

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, ___, ___]
Редактировать и запускать код