https://github.com/PirateGrunt/represtools
Reproducible Research Tools
https://github.com/PirateGrunt/represtools
Last synced: 4 months ago
JSON representation
Reproducible Research Tools
- Host: GitHub
- URL: https://github.com/PirateGrunt/represtools
- Owner: PirateGrunt
- Created: 2015-06-05T14:23:10.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-10-03T18:15:07.000Z (over 5 years ago)
- Last Synced: 2024-11-24T07:16:00.440Z (5 months ago)
- Language: R
- Homepage: http://pirategrunt.com/represtools/
- Size: 1.64 MB
- Stars: 20
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - PirateGrunt/represtools - Reproducible Research Tools (R)
README
[](https://travis-ci.org/PirateGrunt/represtools)
[](https://cran.r-project.org/package=represtools)
[](https://cran.r-project.org/package=represtools)
[](https://codecov.io/gh/PirateGrunt/represtools)
[](https://coveralls.io/github/PirateGrunt/represtools?branch=master)# represtools
Basic utility functions to support reproducible research. Based on ideas published by Christopher Gandrud. This package relies on four stages of data analysis:
1. Gather - collect data
2. Cook - alter raw data so that it is fit for analysis
3. Analyze - construct models or other analysis
4. Present - synthesize the analysis so that it may be presented to an end-user or decision maker## A sample workflow
```
represtools::NewResearch("Baseball")
represtools::Gather("Hitters")# write some code
represtools::Cook("Hitters")
# write some code
represtools::Analyze("Handedness")
# write some code
represtools::Present("Handedness", title = "On the quality of right-handed batters", output = "html")
# write some code
represtools::Make()
```This workflow ensures that anything which changes at an earlier stage of the process _must_ force reconstruction of later stages.
More information is available here: [http://pirategrunt.com/represtools/](http://pirategrunt.com/represtools/).