vignettes/my-vignette-file.R

## ---- 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()
jiyuw/DATA-598-WI20-week-5 documentation built on Feb. 24, 2020, 1:58 a.m.