Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 1.09 KB

rstudio_project.md

File metadata and controls

28 lines (15 loc) · 1.09 KB

Creating an RStudio project

A project is a folder that contains everything concerning your analysis and may include code, data and documentation. It is a complete research object that can be used to describe and reproduce your research.

Create a new project in RStudio as follows:

File -> New Project -> New Directory

In the Project Type screen, click on Empty Project.

In the Create New Project screen, give your project a name and ensure that create a git repository is checked. Click on Create Project.

RStudio will create a new folder containing an empty project and set R's working directory to within it.

Two files are created in the otherwise empty project:-

  • .gitignore - Specifies files that should be ignored by the version control ystem.
  • data_analysis.Rproj - Configuration information for the RStudio project

There is no need to worry about the contents of either of these for the purposes of this tutorial.