There will often be a paragraph of text right here.
-
This is a bullet list
-
This bullet contains some code
library(tidyverse) tibble(x = runif(100))
You need to perform these actions in order.
-
Install the tidyverse.
-
Load the tidyverse:
library(tidyverse)
-
Use the tidyverse.
All tidy datasets are alike. Every messy dataset is messy in its own way.
— Hadley Tolstoy
a <- 10
b <- 30
a + b
#> [1] 40
ggplot(starwars, aes(mass, height)) +
geom_point(na.rm = TRUE)