Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.48 KB

File metadata and controls

49 lines (32 loc) · 1.48 KB

Build Status

Interactive R and ggplot2 figures in your web browser

library(plotly)

# --> your ggplot2 methods <--
dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
qplot(carat, price, data=dsamp, colour=clarity)

# --> send your ggplot2 figure to plotly <--
py <- plotly()
py$ggplotly()

Interact with the Plotly graph: https://plot.ly/~chris/2703

Learn More

Stay in touch

Contributing

  • Contributions welcome! Check out our wiki for more information.