ComeçarComece de graça

Casting a long table

gdp_oceania contains the population and GDP for every country in Oceania for every five years from 1990 to 2010 and is available in your workspace. Your goal is to create wide format data.tables containing the population and total GDP for each country with each year having its own column.

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.

# Split the population column by year
___(gdp_oceania, formula = ___ ~ ___, value.var = "population")
Editar e executar o código