TidyTuesday adventures

a collection of TidyTuesday plots and models
Author

Jo Hardin





hrdag

I try my best to put in a few Tuesday hours working on a TidyTuesday dataset when I can. If you are in Claremont, I hope you will join us; reach out to me for information on time and place.

Novice

To load the data in, create an R chunk and copy in the lines of code which are just below the phrase: # Or read in the data manually on the tidytuesday GitHub site for the particular day of interest. It will look something like this:

```{r}
dataset_1 <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/some_date/dataset_1.csv')

dataset_2 <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/some_date/dataset_2.csv')
```

Beginner

Intermediate

Experienced