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.
Este ejercicio forma parte del curso
Reshaping Data with tidyr
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
drink_df %>%
# Separate the ingredients over rows
___