有没有办法将wordcloud2
包生成的文字云自动导出为html
,而无需手动点击Export
> Save as Web Page
(在RStudio)?比如使用pdf
保存pdf和使用png
保存图片?
以下是生成示例wordcloud的代码
require(wordcloud2)
df = head(demoFreq,50)
wordcloud2(df)
答案 0 :(得分:5)
require(wordcloud2)
df <- head(demoFreq, 5)
my_cloud <- wordcloud2(df)
my_path <- htmltools::html_print(my_cloud) # saves html in temp directory
print(my_path) # the location of the html file.
最好迅速将此文件移至更永久的家中。