Intro

This page serves as documentation for Jacob Bellmund’s contributions to the Tidy Tuesday project. I will contribute as often as I can, but probably won’t be able to make it every week.

You can find the Github Repo here. If you download the Github Repo, you should be able to run my code to reproduce or improve my contributions. If you have suggestions for improvements or any feedback, feel free to get in touch!

If you don’t have the bookdown package installed, this should be the first thing you do. To install it, run from the R console:

if(!require("bookdown")){install.packages("bookdown")}
library(bookdown)  

After that, you can reproduce everything by running the command below from the R Studio console (make sure to have loaded the R project file).

bookdown::render_book()

You will be able to find the visualizations that are generated in the figures folder.

# create folder for figure output if necessary using the here package
if(!require("here")){install.packages("here")}
library(here)

if (!dir.exists(here("figures"))){dir.create(here("figures"))}