gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 04:25:55 32 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/54449169/

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