有没有一种方法可以自动将wordcloud2
包生成的词云导出为html
,而无需手动单击Export
> Save as Web Page
(在RStudio中)?像使用pdf
保存pdf和使用png
保存图像?
这是生成示例wordcloud的代码
require(wordcloud2)
df = head(demoFreq,50)
wordcloud2(df)
最佳答案
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.
最好将这个文件迅速移到一个更永久的家中。
关于r - 自动将wordcloud2导出为html吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41884336/