Creates a self-contained top-level project folder (default: "maudr_assignments")
containing the subfolders data/, code/, and output/ (with
assignments_output/ and answers_output/ inside).
Works in both RStudio and Positron; no .Rproj file is created.
Usage
initialiseProject(path = ".", name = "maudr_assignments", verbose = TRUE)
Arguments
- path
Base directory in which to create the project folder (default ".").
- name
Name of the top-level project folder (default "maudr_assignments").
- verbose
Logical; show progress messages (default TRUE).
Value
The full path to the newly created project folder (invisibly).
Examples
if (FALSE) { # \dontrun{
initialiseProject()
initialiseProject(name = "enzyme_project", path = "~/Documents")
} # }