与ggplot的交互式交互

时间:2015-12-19 22:37:01

标签: r ggplot2 plotly

尝试使用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中)。我缺少具体的安装步骤吗?谢谢

1 个答案:

答案 0 :(得分:2)

这解决了这个问题:

install.packages("plotly", type = "source")