This function sets up a new folder for #tidytuesday challenge within an active project. It creates a directory for the specified year and week, along with sub-directories for data, code, and plots. Template files are also added.
Arguments
- year
An integer representing the year of the #tidytuesday challenge
- week
An integer representing the week of interest, from 1 to 52
Details
The folder includes:
README.md: plots for #tidytuesday challenge
different folders to hold all data, code, plots of data analysis
templates
Examples
if(interactive()){
tidytuesday(year = 2021, week = 25)
}