在RStudio中的Plotly有时会离线工作,即没有互联网连接时。
在脚本下运行会在RStudio中产生错误,但查看器仍为空。点击Show in new window
图标可以在Chrome中打开图表,但没有任何问题。
rm(list = ls()) # Clear all variables and data
library(plotly)
attach(mtcars)
p <- plot_ly()%>%
add_trace(data = mtcars, x = ~hp, y = ~mpg,
type = "scatter", mode = "lines")
print(p)
当我右键单击Viewer并选择Inspect element
时,我在控制台中看到以下错误:
Failed to load resource: The internet connection appears to be offline. http://localhost:29217/session/viewhtmlaf0667b0fcf7/index.html?viewer_pane=1
同样,在我的浏览器中打开该链接不会产生任何错误。
要解决这个问题,我可以通过互联网连接。之后,即使我再次断开连接,情节也会显示出来。 但是,由于某些地方缺乏互联网,这种解决方法并非总是可行。
我的设置如下:
- MacBook Pro 5,3
- OS X 10.11.6
- RStudio 1.0.136
- Plotly v4.5.6