Exporting PNG files from Plotly in R without internet

后端 未结 2 1382
误落风尘
误落风尘 2021-01-12 10:42

In this question, Exporting PNG files from Plotly in R I asked how to export Plotly plots to disk.

I used the function plotly_IMAGE, but later discovere

2条回答
  •  走了就别回头了
    2021-01-12 11:02

    You will to need install Phantom (http://phantomjs.org/download.html) which is quite easy and you can try this:

    library(plotly)
    library(webshot)
    library(htmlwidgets)
    
    m <- plot_ly(x = 1:10)
    saveWidget(as.widget(m), "temp.html")
    webshot("temp.html", file = "test.png",
            cliprect = "viewport")
    

    you will find temp.html and temp.png in your working directory.

提交回复
热议问题