Update data-tidy.qmd (#1032)

Remove comma after "values_to = "rank" in the first billboard pivot_longer example.
This commit is contained in:
Tim Broderick
2022-05-31 23:19:32 -05:00
committed by GitHub
parent 63d47c6bfb
commit 73088da520

View File

@@ -194,7 +194,7 @@ billboard |>
pivot_longer(
cols = starts_with("wk"),
names_to = "week",
values_to = "rank",
values_to = "rank"
)
```