CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Joining Data with data.table in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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

# Left join
___
Modifier et exécuter le code