“The process has forked…” Error while using tm package in R

…衆ロ難τιáo~ 提交于 2019-12-24 06:43:29

问题


I installed the tm package in R to do some text mining analysis. After creating a corpus I wanted to use the tm_map() function, which throws the following error message:

The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().Break on 

Anybody an idea why this message turns up?

Here's more code for clarification:

> require(tm)
Lade nötiges Paket: tm
> a <-Corpus(VectorSource(chi2014_df$text))
> a
A corpus with 70 text documents
> a <-tm_map(a,tolower)
The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
Break on 

I'm using R 3.0.1 GUI 1.61 Snow Leopard build (6492) on OSX 10.7.5


来源:https://stackoverflow.com/questions/18688599/the-process-has-forked-error-while-using-tm-package-in-r

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!