0
我正在處理一些推文並使用文本挖掘技術。如何增加Rstudio中TermDocumentMatrix圖的字體大小?
我用下面的命令,由於字體太小,圖不可讀。我該如何解決它?
plot(tdm, term = freq.terms, corThreshold = 0.95, ps=30)
我正在處理一些推文並使用文本挖掘技術。如何增加Rstudio中TermDocumentMatrix圖的字體大小?
我用下面的命令,由於字體太小,圖不可讀。我該如何解決它?
plot(tdm, term = freq.terms, corThreshold = 0.95, ps=30)
我不一定有你的數據,但這裏是代碼一起工作的通用線。關鍵在於屬性「attrs」並將「字體大小」設置爲適用於您的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")))