Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 613 Bytes

test.md

File metadata and controls

44 lines (28 loc) · 613 Bytes

There will often be a paragraph of text right here.

HTML

Lists

  • This is a bullet list

  • This bullet contains some code

    library(tidyverse)
    tibble(x = runif(100))

You need to perform these actions in order.

  1. Install the tidyverse.

  2. Load the tidyverse: library(tidyverse)

  3. Use the tidyverse.

Blockquote

All tidy datasets are alike. Every messy dataset is messy in its own way.

— Hadley Tolstoy

R code

a <- 10
b <- 30

a + b
#> [1] 40

ggplot(starwars, aes(mass, height)) +
  geom_point(na.rm = TRUE)