R tm包tm.plugin.tags停止工作

时间:2014-02-12 18:39:32

标签: r tm

我使用tm.plugin.tags进行情绪分析:

pos=sapply(search.corpus,tm_tag_score,tm_get_tags("Positiv"))
neg=sapply(search.corpus,tm_tag_score,tm_get_tags("Negativ"))

不知何故,它停止了我的Linux机器上的工作。该库加载时没有警告,并显示为在RStudio的包视图中加载。但是这些功能不可用:

No documentation for ‘tm_tag_score’ in specified packages and libraries:
you could try ‘??tm_tag_score’

但是,相同的脚本在Windows中运行良好。 有人知道问题是什么吗?

1 个答案:

答案 0 :(得分:4)

请在此处阅读:http://cran.fyxm.net/web/packages/tm/news.html - 它已在tm_term_score包中重命名为tm

library(tm)
tm_tag_score <- tm_term_score

(真是巧合;我在2小时前遇到了同样的问题。)