plotly_POST:绘图出现在R Viewer中,但不在线

时间:2015-11-24 23:32:57

标签: r plotly

我试图通过R:

中的这两行代码在线发布情节
library('plotly')
plot_ly(data = sampledata, x = date, y = id, type = 'bar')
plotly_POST(sampledata, filename = "Test",  world_readable=TRUE)

它没有给我任何错误或警告,并说“成功!在这里创造了一个新的情节 - >"

情节出现在R Viewer中,但如果我去我的阴谋帐户(或点击链接),我会看到一个如下空白图:

Blank plotly bar chart

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

非常感谢任何建议!

1 个答案:

答案 0 :(得分:0)

你必须发送整个数字:

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/