When curating a TidyTuesday dataset, you need to introduce the dataset. This
function creates a simple intro.Rmd
file in the specified path, and (if
possible) opens it for editing.
Usage
tt_intro(
path = "tt_submission",
open = rlang::is_interactive(),
ignore = FALSE
)
Arguments
- path
The relative path to the directory to hold your submission files (
tt_submission
by default). If this directory does not exist, it will be created.- open
Open the newly created file for editing? Happens in RStudio, if applicable, or via
utils::file.edit()
otherwise.- ignore
Should the newly created file be added to
.Rbuildignore
?