https://github.com/matt-dray/r-analysis-template
:file_folder::heavy_plus_sign: GitHub repo template: simple R analysis projects
https://github.com/matt-dray/r-analysis-template
r repo-template rstats template
Last synced: 29 days ago
JSON representation
:file_folder::heavy_plus_sign: GitHub repo template: simple R analysis projects
- Host: GitHub
- URL: https://github.com/matt-dray/r-analysis-template
- Owner: matt-dray
- License: mit
- Created: 2019-06-10T21:04:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T18:52:06.000Z (over 5 years ago)
- Last Synced: 2025-03-09T01:11:58.403Z (about 1 month ago)
- Topics: r, repo-template, rstats, template
- Language: R
- Homepage: https://www.rostrum.blog/2019/06/11/r-repo-template/
- Size: 286 KB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - matt-dray/r-analysis-template - :file_folder::heavy_plus_sign: GitHub repo template: simple R analysis projects (R)
README
# r-analysis-template
[](https://www.rostrum.blog/2019/06/11/r-repo-template/)
## Purpose
An opinionated [GitHub repository template](https://github.blog/2019-06-06-generate-new-repositories-with-repository-templates/) to begin a simple analytical project with R and RStudio.
You should [read this blog post](https://www.rostrum.blog/2019/06/11/r-repo-template/) for a more in-depth explanation of this repo.
## How to use
Click the green 'Use this template' button from [in this repo](https://github.com/matt-dray/analysis-template) to copy it.
[You can also click here](https://github.com/matt-dray/r-analysis-template/generate) to open the page for copying the repo.
## File tree
```
r-analysis-template/
├── 01_read.R
├── 02_tidy.R
├── 03_model.R
├── data/
│ ├── README.md
│ └── YYYMMDD_raw-data.csv
├── docs/
│ ├── README.md
│ ├── template-document-example.docx
│ ├── template-document-example.html
│ └── template-document-example.Rmd
├── ext/
│ └── README.md
├── output/
│ ├── README.md
│ └── YYYMMDD_cleaned-data.csv
├── R/
│ ├── functions.R
│ └── README.md
├── r-analysis-template.Rproj
└── README.md
```