plotly_POST: 该图出现在 R Viewer 中,但未在线

plotly_POST: the plot appears in R Viewer, but not online

我正在尝试通过 R 中的这两行代码在线发布情节:

library('plotly')
plot_ly(data = sampledata, x = date, y = id, type = 'bar')
plotly_POST(sampledata, filename = "Test",  world_readable=TRUE)

它没有给我任何错误或警告,而是说 "Success! Created a new plotly here ->"

该图出现在 R Viewer 中,但如果我转到我的 plotly 帐户(或关注 link),我会看到这样的空白图:

Blank plotly bar chart

我以前能够在线发布一张图表 - 但我不记得我的代码中有任何更改。

非常感谢任何建议!

你必须发送整个数字:

p <- plot_ly(data = sampledata, x = date, y = id, type = 'bar')
plotly_POST(p, filename = "Test",  world_readable=TRUE)

有关 plotly_POST 的更多信息,您可以查看此参考资料:https://plot.ly/r/file-options/