create_sim()
initializes a directory for your simulation
study. It wraps around usethis::create_project()
, as well as
usethis::use_git()
and
renv::init()
.
Arguments
- path
A
character
specifying the path for your simulation directory.- init_git
A
logical
indicating whether to intialize your simulation directory as a git repository.- init_renv
A
logical
stating whether to initializerenv
withrenv::init()
. Defaults toFALSE
.- tests
A
logical
indicating whether to generate sub-directories for organizing unit tests. Defaults toTRUE
.- hpc
A
logical
indicating whether to create sub-directories for organizing files related to high-power computing environments. Defaults toFALSE
.