## ---- include = FALSE---------------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
## ----setup--------------------------------------------------------------------
library(mysimplecompedium)
## ---- starwars-plot, fig.cap="A ggplott of starwars stuff"--------------------
library(tidyverse)
starwars %>%
filter(species == "Human")%>%
ggplot()+aes(x=height, y=mass)+geom_point()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.