尝试使用ggplot2从第一个example开始工作,我收到以下错误:
rm(list=ls())
library(plotly)
dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
qplot(carat, price, data=dsamp, colour=clarity)
ggplotly()
ggplotly() ggplot_build2(p)出错:找不到函数&#34; calculate_stats&#34;
图表呈现,但没有交互性。我正在使用plotly版本2.0.3和ggplot版本2.0.0(在RStudio v 0.99.486中)。我缺少具体的安装步骤吗?谢谢
答案 0 :(得分:2)
这解决了这个问题:
install.packages("plotly", type = "source")