Get startedGet started for free

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.

This exercise is part of the course

Case Study: Exploratory Data Analysis in R

View Course

Exercise instructions

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

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

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

# Unnest the data column to return it to its original form
Edit and Run Code