df <- data.frame(A = c(1,1,1), B = c(2,2,3))
variables <- c("A", "B")
dplyr::count(df, !!!rlang::sym(variables))
Error: Only strings can be converted to symbols
Run `rlang::last_error()` to see where the error occurred.
It works if variables
is either A
or B
, but not both.
For this
syms
is needed. According to?sym