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 exercício faz parte do curso
Reshaping Data with tidyr
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
drink_df %>%
# Separate the ingredients over rows
___