I am using R 3.0.1 on Platform: i486-pc-linux-gnu (32-bit).I am trying to use tm_map from the tm library.I have 4080 words in my SmartStopWord list. But when I execute the this code :
library(tm)
Get_Corpus <- system.file("texts","MyFile", package = "tm")
(corpus <- Corpus(DirSource(Get_Corpus, encoding = "UTF-8"),readerControl
= list(language = "lat")))
show(corpus)
corpus <- tm_map(corpus, removeWords, stopwords("SmartStopWord"))
I get this error:
Message d'avis :
In parallel::mclapply(x, FUN, ...) :
all scheduled cores encountered errors in user code
Does anyone know a solution for this?