The goal of mytidytuesday is to hold small projects. They are like blogs posts, but mostly code. In the spirit of #tidytuesday no pressure to write prose!
Initially, I planned to work on #tidytuesday stuff, but I ended up just working on problems that arose in my work and personal interests.
new_experiment_rmd <- function(name){
dir <- paste0(Sys.Date(),"-", name)
dir.create(dir, recursive = F)
filepath <- paste0(dir, "/", name, ".Rmd")
readLines("experiment-template.Rmd") |>
writeLines(filepath)
}
new_experiment_rmd(name = "wax-wick-candlestick")