Closed nick-youngblut closed 2 years ago
All fixed - thanks for catching this.
pacman::p_load(tidytable)
df <- tidytable("a a" = 1,
"names" = c("a", "b"),
"val" = 1:2)
df %>%
pivot_wider.(names_from = names, values_from = val)
#> # A tidytable: 1 × 3
#> `a a` a b
#> <dbl> <int> <int>
#> 1 1 1 2
Thanks @markfairbanks for the quick fix!
At least for tidytable v0.8.0,
pivot_wider.
cannot handle any columns that must be identified with backticks.Reprex:
Error: