Pre-work

A portion of this workshop will be conducted in the Posit Cloud environment. Posit Cloud allows us all to work in the exact same environment with the same version of R, R packages, and directory of files. .

Please create a login to the Posit Cloud instance of this workshop here:

https://posit.cloud/content/7872027

Alternative

If you are struggling using Posit Cloud, you can download the materials locally on your machine.

Note that the presenter will NOT be able to help you with local computer problems during the workshop. To do this you will need the following to do the following prior to the workshop:

pkgs <- c("tidyverse", "readxl", "summarytools", "janitor", "pointblank")

install.packages(pkgs)
# install.packages("usethis")
usethis::use_course(
    "https://github.com/Cghlewis/ncme-data-cleaning-workshop/raw/main/exercises/exercises.zip",
    destdir = "___")

R and RStudio

For this workshop it is assumed that you are comfortable navigating the RStudio environment and that you have some understanding of things like packages, functions, objects, file paths, and R syntax. If you need any refreshers, I recommend reviewing the following materials.

Tidyverse

If you’re new to the {tidyverse}, here are some materials I recommend reviewing before the workshop.