https://github.com/aaronpeikert/repro
Easy Setup of a Reproducible Workflow
https://github.com/aaronpeikert/repro
Last synced: 4 days ago
JSON representation
Easy Setup of a Reproducible Workflow
- Host: GitHub
- URL: https://github.com/aaronpeikert/repro
- Owner: aaronpeikert
- License: gpl-3.0
- Created: 2019-12-09T13:34:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T09:32:18.000Z (7 months ago)
- Last Synced: 2025-04-11T01:12:48.757Z (4 days ago)
- Language: R
- Size: 339 KB
- Stars: 37
- Watchers: 3
- Forks: 7
- Open Issues: 72
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - aaronpeikert/repro - Easy Setup of a Reproducible Workflow (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# repro
[](https://github.com/aaronpeikert/repro/actions)
[](https://codecov.io/gh/aaronpeikert/repro?branch=main)
[](https://www.repostatus.org/#wip)The goal of `repro` is to make the setup of reproducible workflows as easy as possible. To that end it builds upon the great [`usethis`-package](https://github.com/r-lib/usethis). `repro` currently undergoes significant changes to support more workflows than just the one proposed by [Peikert & Brandmaier (2019)](https://psyarxiv.com/8xzqy/). You may want to install the [`worcs`](https://github.com/cjvanlissa/worcs) package from CRAN for a user-friendly workflow that meets most requirements of reproducibility and open science.
## Installation
You can install the latest version of repro from [GitHub](https://github.com/aaronpeikert/repro) with:
``` r
if(!requireNamespace("remotes"))install.packages("remotes")
remotes::install_github("aaronpeikert/repro")
```## Contribution
I am more then happy if you want to contribute, but I ask you kindly to note that the 'repro' project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.
A contribution is especially welcome if it follows these principles:
1. The `repro` package aids the user setup reproducibility tools.
2. The reproduction itself must not require the `repro` package.
3. Do not suprisingly rely on the system or project state or change them.