diff --git a/data-tidy.qmd b/data-tidy.qmd index 616dd78..8b1367d 100644 --- a/data-tidy.qmd +++ b/data-tidy.qmd @@ -278,7 +278,7 @@ df <- tribble( ``` We want our new dataset to have three variables: `id` (already exists), `measurement` (the column names), and `value` (the cell values). -So we can tidy `df` with: +To achieve this, we need to pivot `df` longer: ```{r} df |>