R Eclipse StatET - Creating wordcloud gets overlapped words -


i'm trying create wordcloud using r in eclipse. i've been working r weeks without problem , i´ve created lots of different plots, when creating wordcloud, kind of them , using different configurations, wordcloud words overlapped.

i've followed different examples , words overlapped. example, if execute code:

library(wordcloud) library(tm)  wordcloud("may our children , our children's children             thousand generations, continue enjoy benefits conferred             upon united country, , have cause yet rejoice under             glorious institutions bequeathed washington ,             compeers.",colors=brewer.pal(6,"dark2"),random.order=false) 

i result:

as can see, words overlapped , don´t know do. i've search lot on internet , didn't clue.

the arguments within wordcloud package includes:

"use.r.layout - if false, c++ code used collision detection, otherwise r used" -documentation wordcloud package.

there may difficulty eclipse , usage of r vs. c++. unsure default of wordcloud try toggling argument between true , false.

e.g. wordcloud("corpus",use.r.layout=true,colors=brewer.pal(6,"dark2"),random.order=false)


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -