CommencerCommencer gratuitement

Unnesting

The opposite of the nest() operation is the unnest() operation. This takes each of the data frames in the list column and brings those rows back to the main data frame.

In this exercise, you are just undoing the nest() operation. In the next section, you'll learn how to fit a model in between these nesting and unnesting steps that makes this process useful.

Cet exercice fait partie du cours

Case Study: Exploratory Data Analysis in R

Afficher le cours

Instructions

Unnest the data list column, so that the table again has one row for each country-year pair, much like by_year_country.

Exercice interactif pratique

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

# All countries are nested besides country
nested <- by_year_country %>%
  nest(-country)

# Unnest the data column to return it to its original form
Modifier et exécuter le code