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.
Diese Übung ist Teil des Kurses
Reshaping Data with tidyr
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
drink_df %>%
# Separate the ingredients over rows
___