如何在Rstudio上增加TermDocumentMatrix图的字体大小?

时间:2016-12-25 19:51:12

标签: plot rstudio font-size term-document-matrix

我正在处理一些推文并使用文本挖掘技术。

我使用了以下命令,因为字体太小,所以图表不可读。我该如何解决?

plot(tdm, term = freq.terms, corThreshold = 0.95, ps=30)

Plot

1 个答案:

答案 0 :(得分:1)

我不一定拥有您的数据,但这里有一个通用的代码行。关键在于属性“attrs”,并将“fontsize”设置为适用于您的tdm的任何内容。使用corlimit和lowfreq进行混乱将有助于减少或增加节点和连接线的数量,这也会影响字体大小。我只想用您或您的客户想要的参数创建绘图,然后增加属性行中的字体。

corlimit <- 0.95
freq.term <- findFreqTerms(tdm,lowfreq=1000)    
plot(tdm,main=title,term=freq.term, corThreshold=corlimit,
attrs=list(node=list(width=20,fontsize=74,fontcolor="blue",color="red")))

以下是字体和属性行 enter image description here

没有属性行的相同图 enter image description here