R Eclipse StatET - 创建wordcloud会得到重叠的单词

时间:2014-04-14 12:18:54

标签: r word-cloud

我正在尝试使用Eclipse中的R创建wordcloud。我已经和R一起工作了几个星期没有任何问题,我已经创建了很多不同的图,但是当创建wordcloud,任何类型和使用不同的配置时,我总是得到wordcloud,所有的单词重叠。< / p>

我遵循了不同的例子,我总是把这些词重叠起来。例如,如果我执行此代码:

library(wordcloud)
library(tm)

wordcloud("May our children and our children's children to a
            thousand generations, continue to enjoy the benefits conferred
            upon us by a united country, and have cause yet to rejoice under
            those glorious institutions bequeathed us by Washington and his
            compeers.",colors=brewer.pal(6,"Dark2"),random.order=FALSE)

我得到了这个结果:

正如您所看到的,所有单词都是重叠的,我不知道该怎么做。我在互联网上搜索了很多,但我没有得到任何线索。

2 个答案:

答案 0 :(得分:0)

wordcloud包中的参数包括:

&#34; use.r.layout - 如果为false,则c ++代码用于冲突检测,否则使用R&#34; -Documentation for Wordcloud package.

Eclipse和使用R与C ++可能存在一些困难。由于我不确定Wordcloud的默认设置是否尝试在TRUEFALSE之间切换参数。

e.g。 Wordcloud("Corpus",use.r.layout=TRUE,colors=brewer.pal(6,"Dark2"),random.order=FALSE)

答案 1 :(得分:0)

添加命令

后出现此问题
Sys.setlocale('LC_ALL','C') 

禁用此指令使wordcloud再次正常工作。 我正在使用带有R内核的Jupyter Notebook