About this site
```{r} #| warning: false library(dplyr) library(ggplot2) library(plotly) df <- mtcars plt <- df %>% ggplot() + geom_point(aes(x=mpg, y=cyl)) plt %>% ggplotly() ```