当前位置:  开发笔记 > 前端 > 正文

将wordcloud2自动导出为html?

如何解决《将wordcloud2自动导出为html?》经验,为你挑选了1个好方法。

有没有办法自动导出wordcloud2包生成的文字云html而无需手动点击Export> Save as Web Page(在RStudio中)?像保存pdf pdf和图像一样png

这是生成示例wordcloud的代码

require(wordcloud2)
df = head(demoFreq,50)
wordcloud2(df)

Chrisss.. 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.

最好迅速将此文件移动到更永久的家中.



1> Chrisss..:
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.

最好迅速将此文件移动到更永久的家中.

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有