首页 > 代码库 > R----plotly包介绍学习

R----plotly包介绍学习

plotly包:让ggplot2的静态图片变得可交互

1
2
3
4
library(plotly)
p <- ggplot(data = http://www.mamicode.com/diamonds, aes(x = cut, fill = clarity)) +
geom_bar(position = "dodge")
ggplotly(p)

plotly支持facet,不过当facet的图形超过9个以后,legend处会出现bug。

R----plotly包介绍学习