Get startedGet started for free

Separating into columns and rows

Remember the drink ingredients data from the video? You've been given a similar version (drink_df) that also includes quantities and units. Now you want to create an overview of how much of each ingredient you should buy to make these drinks.

The dplyr package has been pre-loaded for you.

This exercise is part of the course

Reshaping Data with tidyr

View Course

Hands-on interactive exercise

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

drink_df %>%
  # Separate the ingredients over rows
  ___
Edit and Run Code