I am trying to use Rwordseg in Chinese text mining. But it shows "Process failed. Script terminated abnormally."
The R script I put to execute is as follow, hope someone can help me to solve this problem, thanks.
rm_main = function(data)
{
library(Rwordseg)
data2<-as.data.table(segmentCN(data$Sentence))
return(data2)
}