poissonconsulting / tidyplus

An R package of additional tidyverse functions
https://poissonconsulting.github.io/tidyplus/
Other
9 stars 0 forks source link

Get `unite_str()` working with symbol #2

Open joethorley opened 2 years ago

joethorley commented 2 years ago
  library(tidyplus)
  data <- tibble::tibble(x = c("good", "Saw fish.", NA), y = c("2021", NA, NA))
  data <- unite_str(data, new, x, y)
#> Error: Must supply a symbol or a string as argument

Created on 2022-01-14 by the reprex package (v2.0.1)