Skip to content

Instantly share code, notes, and snippets.

@mevers
Created February 8, 2020 02:37
Show Gist options
  • Save mevers/a24a14c1d466113988c90abd60d8d4c9 to your computer and use it in GitHub Desktop.
Save mevers/a24a14c1d466113988c90abd60d8d4c9 to your computer and use it in GitHub Desktop.
---
title: "Untitled"
output: ioslides_presentation
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## Sample plotly
```{r echo=F, warning=F, message=F}
library(plotly)
library(ggplot2)
gg <- ggplot(mtcars, aes(mpg, wt)) + geom_point()
ggplotly(gg)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment