在R中通过webshot保存.png

时间:2018-01-16 21:02:28

标签: r png plotly htmlwidgets r-plotly

我正在使用webshot从HTML保存png文件:

p <- plot_ly(plotly::wind, r = ~r, t = ~t) %>% add_area(color = ~nms)%>%
 layout(radialaxis = list(ticksuffix = "%"), orientation = 270)

saveWidget(as.widget(p), "temp.html")
webshot("temp.html",file = "temp.png",cliprect = "viewport")

这给了我一个像this的情节。它会在左上角返回一个小图像。如何在中心放置全尺寸图像?

0 个答案:

没有答案