This function creates the following additional folders data/
, analyses/
,
outputs/
, and figures/
. Each folder has a README.md
to provide
instructions. The argument compendium
allows user to choose if these
folders are created at the root of the project (default) or nested inside a
parent directory. All theses folders are added to the .Rbuildignore
file.
add_compendium(compendium = ".")
A character of length 1. By default, compendium folders
are created at the root of the project. User can change their location
with this argument. For instance, if compendium = 'analysis'
, compendium
folders will be created inside the directory analysis/
.
No return value.
Other create files:
add_citation()
,
add_description()
,
add_dockerfile()
,
add_license()
,
add_makefile()
,
add_package_doc()
,
add_readme_rmd()
,
add_renv()
,
add_testthat()
,
add_vignette()
if (FALSE) {
add_compendium()
}