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 = "")