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.
Cet exercice fait partie du cours
Reshaping Data with tidyr
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
drink_df %>%
# Separate the ingredients over rows
___