├── .gitignore ├── R └── function.R ├── README-NOT.md ├── README.md ├── data ├── gapminder.csv ├── gapminder1952-1977.csv └── gapminder1982-2007.csv ├── diagram.png ├── figures ├── mean_lifeExp_by_continent.png └── plot_by_country.png ├── remake.yml ├── report.Rmd └── report.html /.gitignore: -------------------------------------------------------------------------------- 1 | .remake/ 2 | figures/ 3 | -------------------------------------------------------------------------------- /R/function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/R/function.R -------------------------------------------------------------------------------- /README-NOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/README-NOT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /data/gapminder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/data/gapminder.csv -------------------------------------------------------------------------------- /data/gapminder1952-1977.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/data/gapminder1952-1977.csv -------------------------------------------------------------------------------- /data/gapminder1982-2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/data/gapminder1982-2007.csv -------------------------------------------------------------------------------- /diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/diagram.png -------------------------------------------------------------------------------- /figures/mean_lifeExp_by_continent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/figures/mean_lifeExp_by_continent.png -------------------------------------------------------------------------------- /figures/plot_by_country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/figures/plot_by_country.png -------------------------------------------------------------------------------- /remake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/remake.yml -------------------------------------------------------------------------------- /report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/report.Rmd -------------------------------------------------------------------------------- /report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/remake-tutorial/HEAD/report.html --------------------------------------------------------------------------------