These functions create an R project:
create_package() creates an R package
create_project() creates a non-package project, i.e. a data analysis
project
Both functions can be called on an existing project; you will be asked before any existing files are changed.
create_package(path, fields = NULL, rstudio = rstudioapi::isAvailable(), open = interactive()) create_project(path, rstudio = rstudioapi::isAvailable(), open = interactive())
| path | A path. If it exists, it is used. If it does not exist, it is created, provided that the parent path exists. |
|---|---|
| fields | A named list of fields to add to |
| rstudio | If |
| open | If
|
Path to the newly created project or package, invisibly.