This will create paper.Rmd, references.bib
and several others, and add bookdown to the imported packages listed in the DESCRIPTION file.
use_analysis(
pkg = ".",
location = "top_level",
template = "paper.Rmd",
data = list(),
data_in_git = TRUE
)defaults to the package in the current working directory
the location where the directories and files will be written to. Defaults to a top-level 'analysis' directory. Other options are 'inst' (for the inst/ directory, so that all the contents will be included in the installed package) and 'vignettes' (as in a regular package vignette, all contents will be included in the installed package).
the template file to use to create the main analysis document. Defaults to 'paper.Rmd', ready to write R Markdown and knit to MS Word using bookdown
forwarded to whisker::whisker.render
should git track the files in the data directory?