# NOT RUN {
test_df <- tidytable(a = c("a", "a", "a"),
b = c("b", "b", "b"),
c = c("c", "c", NA))
test_df %>%
unite.("new_col", b, c)
test_df %>%
unite.("new_col", where(is.character))
test_df %>%
unite.("new_col", b, c, remove = FALSE)
test_df %>%
unite.("new_col", b, c, na.rm = TRUE)
test_df %>%
unite.()
# }
Run the code above in your browser using DataLab