From d58d313b5e1f7f1bf1ccb3537725161247a5eeeb Mon Sep 17 00:00:00 2001 From: mine-cetinkaya-rundel Date: Sat, 11 Mar 2023 05:37:41 -0500 Subject: [PATCH] Clarify action, closes #1361 --- data-tidy.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 |>