ComeçarComece de graça

Column name suffixes

The three data.tables containing information about the geography and population of Australia have been loaded into your R session: capitals, area, and population. Both area and population now have a column named "percentage". The "percentage" column in area contains the percentage of total land mass each state occupies. The "percentage" column in population contains the percentage of the total population living in each city.

Este exercício faz parte do curso

Joining Data with data.table in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Inner join
capital_pop <- ___(capitals, population, ___)

# Left join
___
Editar e executar o código