gpt4 book ai didi

r - 使用 R 和 plot.ly - 如何编写脚本将我的输出保存为网页

转载 作者:行者123 更新时间:2023-12-03 11:47:45 29 4
gpt4 key购买 nike

我想使用 R 和 plot.ly 制作一些交互式图表.当我在 R-Studio 中运行以下代码时,它会生成一个交互式图形。

library(plotly)
set.seed(100)
d <- diamonds[sample(nrow(diamonds), 1000), ]
plot_ly(d, x = carat, y = price, text = paste("Clarity: ", clarity),
mode = "markers", color = carat, size = carat)

生成此图形后,当我单击 R-Studio 绘图窗口中的“导出”按钮时,它提供了将绘图保存为网页的选项。如何编写将生成的绘图保存为网页的过程的脚本?我的最终目标是从 bash 脚本内部迭代运行 Rscripts 以生成多个网页。

最佳答案

分配 plot_ly对象到一个变量,然后使用 htmlwidgets::saveWidget()保存实际文件,如下所示:

library(plotly)
set.seed(100)
d <- diamonds[sample(nrow(diamonds), 1000), ]
p <- plot_ly(d, x = carat, y = price, text = paste("Clarity: ", clarity),
mode = "markers", color = carat, size = carat)
htmlwidgets::saveWidget(as_widget(p), "index.html")

关于r - 使用 R 和 plot.ly - 如何编写脚本将我的输出保存为网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34580095/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com