Problems with Unite(), etc functions when columns have characters

Hi @cupricfae. The first argument of unite should be an dataframe or tibble. But you pass the character vector to it, so it raises error. Try the following code by replacing your data frame name.

ComprrJAcc  <- unite(yourDataFrameName, JAcc,  Japanese, Accuracy, sep = "")
1 Like