General Notes

[link text](#ID) - (#ID) can be a web link or section header name.

help() or ?() - To search up functions in Help section of R.

library(dplyr) - Load the dplyr package so Tidyverse work properly.

library(readr) - Load the readr package for every session so reading files work.

dput() - To figure out the coding of a variable.

dataset_name <- readRDS(gzcon(url("URL_link"))) - To directly load a RDS dataset from a link online.

{r include=TRUE, eval=FALSE} -To show code in the putput but not run.