Learn R Programming

ProjectTemplate (version 0.3-4)

create.project: Automatically creates a new project directory and all of its contents.

Description

create.project() builds a project directory containing several subdirectories and files. The full output is described in the associated README, which can be seen on GitHub.

Usage

create.project(project.name = 'new-project', minimal = FALSE, dump = FALSE)

Arguments

project.name
A character vector containing the name for this new project. Must be a valid directory name for your file system.
minimal
A boolean value indicating whether to create a minimal project or a full project. A minimal project contains only the directories strictly necessary to use ProjectTemplate and does not provide template code for profiling, unit testing or documenting your
dump
A boolean value indicating whether the entire functionality of ProjectTemplate should be written out to flat files in the current project.

Value

  • No value is returned; this function is called for its side effects.

Examples

Run this code
library('ProjectTemplate')

create.project('project_name')

Run the code above in your browser using DataLab