当我尝试将 R 中的 ggplot2 图形转换为 plotly 时,它会给出以下错误消息。这是什么意思?
(R版:R版3.0.2(2013-09-25)
“函数错误(类型,msg,asError = TRUE):
这是完整的代码:
library(ggplot2)
flowers<-ggplot(iris, aes(x=Sepal.Length, y=Petal.Length)) + geom_point(col="blue")
library(plotly)
set_credentials_file("MyUsername", "Mykey") ## i left out my logins
py <- plotly()
r<-py$ggplotly(flowers)
r$response$url