ComeçarComece de graça

Concatenating a list of data.tables

A list of data.tables has been loaded into your R session: gdp. Its elements contain a data.table for each continent, each data.table containing the gross domestic product (gdp) in the year 2000 for the countries in each continent (data sourced from the Gapminder foundation). Your goal is to build a new data.table containing the observations from all data.tables in the gdp list

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.

# Concatenate its data.tables
gdp_all_1 <- ___
Editar e executar o código