├── .gitignore ├── 01-basics ├── R.Rproj ├── README.md ├── raw_meat.txt └── remake.yml ├── 02-spice ├── R.Rproj ├── README.md ├── raw_meat.txt └── remake.yml ├── 03-vegetables ├── R.Rproj ├── README.md ├── from-raw.png ├── raw_carrots.txt ├── raw_meat.txt ├── raw_potatoes.txt ├── remake.yml └── vegetables.png ├── 04-supermarket ├── R.Rproj ├── README.md ├── full.png ├── raw_carrots.txt ├── raw_meat.txt ├── raw_potatoes.txt └── remake.yml ├── 05-editing ├── R.Rproj ├── R │ └── .gitignore ├── README.md └── remake.yml ├── 06-custom ├── R.Rproj ├── R │ ├── .gitignore │ └── steps.R ├── README.md └── remake.yml ├── 07-knitr ├── R.Rproj ├── R │ ├── .gitignore │ └── steps.R ├── README.md └── remake.yml ├── 08-tofu ├── R.Rproj ├── R │ ├── .gitignore │ ├── knit.R │ └── steps.R ├── README.md ├── detailed-parallel.png ├── final.Rmd └── remake.yml ├── 09-freeride └── README.md ├── README.Rmd ├── README.md └── remake-tutorial.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /01-basics/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/01-basics/R.Rproj -------------------------------------------------------------------------------- /01-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/01-basics/README.md -------------------------------------------------------------------------------- /01-basics/raw_meat.txt: -------------------------------------------------------------------------------- 1 | raw meat 2 | -------------------------------------------------------------------------------- /01-basics/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/01-basics/remake.yml -------------------------------------------------------------------------------- /02-spice/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/02-spice/R.Rproj -------------------------------------------------------------------------------- /02-spice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/02-spice/README.md -------------------------------------------------------------------------------- /02-spice/raw_meat.txt: -------------------------------------------------------------------------------- 1 | raw meat 2 | -------------------------------------------------------------------------------- /02-spice/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/02-spice/remake.yml -------------------------------------------------------------------------------- /03-vegetables/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/03-vegetables/R.Rproj -------------------------------------------------------------------------------- /03-vegetables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/03-vegetables/README.md -------------------------------------------------------------------------------- /03-vegetables/from-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/03-vegetables/from-raw.png -------------------------------------------------------------------------------- /03-vegetables/raw_carrots.txt: -------------------------------------------------------------------------------- 1 | raw carrots 2 | -------------------------------------------------------------------------------- /03-vegetables/raw_meat.txt: -------------------------------------------------------------------------------- 1 | marinated meat 2 | -------------------------------------------------------------------------------- /03-vegetables/raw_potatoes.txt: -------------------------------------------------------------------------------- 1 | raw potatoes 2 | -------------------------------------------------------------------------------- /03-vegetables/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/03-vegetables/remake.yml -------------------------------------------------------------------------------- /03-vegetables/vegetables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/03-vegetables/vegetables.png -------------------------------------------------------------------------------- /04-supermarket/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/04-supermarket/R.Rproj -------------------------------------------------------------------------------- /04-supermarket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/04-supermarket/README.md -------------------------------------------------------------------------------- /04-supermarket/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/04-supermarket/full.png -------------------------------------------------------------------------------- /04-supermarket/raw_carrots.txt: -------------------------------------------------------------------------------- 1 | raw carrots 2 | -------------------------------------------------------------------------------- /04-supermarket/raw_meat.txt: -------------------------------------------------------------------------------- 1 | marinated meat 2 | -------------------------------------------------------------------------------- /04-supermarket/raw_potatoes.txt: -------------------------------------------------------------------------------- 1 | raw potatoes 2 | -------------------------------------------------------------------------------- /04-supermarket/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/04-supermarket/remake.yml -------------------------------------------------------------------------------- /05-editing/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/05-editing/R.Rproj -------------------------------------------------------------------------------- /05-editing/R/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05-editing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/05-editing/README.md -------------------------------------------------------------------------------- /05-editing/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/05-editing/remake.yml -------------------------------------------------------------------------------- /06-custom/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/06-custom/R.Rproj -------------------------------------------------------------------------------- /06-custom/R/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-custom/R/steps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/06-custom/R/steps.R -------------------------------------------------------------------------------- /06-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/06-custom/README.md -------------------------------------------------------------------------------- /06-custom/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/06-custom/remake.yml -------------------------------------------------------------------------------- /07-knitr/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/07-knitr/R.Rproj -------------------------------------------------------------------------------- /07-knitr/R/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07-knitr/R/steps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/07-knitr/R/steps.R -------------------------------------------------------------------------------- /07-knitr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/07-knitr/README.md -------------------------------------------------------------------------------- /07-knitr/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/07-knitr/remake.yml -------------------------------------------------------------------------------- /08-tofu/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/R.Rproj -------------------------------------------------------------------------------- /08-tofu/R/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08-tofu/R/knit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/R/knit.R -------------------------------------------------------------------------------- /08-tofu/R/steps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/R/steps.R -------------------------------------------------------------------------------- /08-tofu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/README.md -------------------------------------------------------------------------------- /08-tofu/detailed-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/detailed-parallel.png -------------------------------------------------------------------------------- /08-tofu/final.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/final.Rmd -------------------------------------------------------------------------------- /08-tofu/remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/08-tofu/remake.yml -------------------------------------------------------------------------------- /09-freeride/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/09-freeride/README.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /remake-tutorial.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/remake-tutorial/HEAD/remake-tutorial.Rproj --------------------------------------------------------------------------------