├── .gitignore ├── README.md ├── deploy.sh ├── input └── data.csv ├── main.Rmd └── processData.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Rdata 2 | .Rhistory 3 | .Rprofile 4 | main.html 5 | output/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-reproducibility-workflow/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-reproducibility-workflow/HEAD/deploy.sh -------------------------------------------------------------------------------- /input/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-reproducibility-workflow/HEAD/input/data.csv -------------------------------------------------------------------------------- /main.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-reproducibility-workflow/HEAD/main.Rmd -------------------------------------------------------------------------------- /processData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-reproducibility-workflow/HEAD/processData.R --------------------------------------------------------------------------------