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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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