F Conventions

This book will use the following conventions:

  • Generic code: list(number = 1, letter = "A")
  • Highlighted code: dplyr::slice_max()
  • File paths: data/sales.csv
  • R Packages: tidyverse
  • Functions: paste()
  • Strings: "psyTeachR"
  • Numbers: 100, 3.14
  • Logical values: TRUE, FALSE
  • Glossary items: ordinal
  • Citations: Wickham (2021)
  • Internal links: ChapterĀ ??
  • External links: R for Data Science
  • Menu/interface options: New File...
  • Quiz question: I am going to learn a lot:

You found it!

Informational asides.

Notes to warn you about something.

Notes about things that could cause serious errors.

Try it yourself.

# code chunks
paste("Applied", "Data", "Skills", 1, sep = " ")
## [1] "Applied Data Skills 1"
```{r setup, message = FALSE}
# code chunks with visible r headers
library(tidyverse)
```