Software information and conventions

The basic R session information when compiling this book is as follows:

xfun::session_info(c(
  'bookdown', 'knitr', 'rmarkdown', 'xfun'
), dependencies = FALSE)
## R version 4.3.2 (2023-10-31)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.4 LTS
## 
## Locale:
##   LC_CTYPE=C.UTF-8       LC_NUMERIC=C          
##   LC_TIME=C.UTF-8        LC_COLLATE=C.UTF-8    
##   LC_MONETARY=C.UTF-8    LC_MESSAGES=C.UTF-8   
##   LC_PAPER=C.UTF-8       LC_NAME=C             
##   LC_ADDRESS=C           LC_TELEPHONE=C        
##   LC_MEASUREMENT=C.UTF-8 LC_IDENTIFICATION=C   
## 
## Package version:
##   bookdown_0.37  knitr_1.45     rmarkdown_2.25
##   xfun_0.42     
## 
## Pandoc version: 2.17.1.1

We do not add prompts (> and +) to R source code in this book, and we comment out the text output with two hashes ## by default, as you can see from the R session information above. This is for your convenience when you want to copy and run the code (the text output will be ignored since it is commented out). Package names are in bold text (e.g., rmarkdown), and inline code and filenames are formatted in a typewriter font (e.g., knitr::knit('foo.Rmd')). Function names are followed by parentheses (e.g., blogdown::serve_site()). The double-colon operator :: means accessing an object from a package.

“Rmd” is the filename extension of R Markdown files, and also an abbreviation of R Markdown in this book.