├── .gitignore ├── LICENSE ├── README.md ├── analysis ├── .gitignore ├── input │ ├── ignore │ │ └── .gitkeep │ └── test.csv ├── main.Rmd ├── output │ ├── abc.csv │ ├── ignore │ │ └── .gitkeep │ └── xyz.csv └── scripts │ ├── csf.R │ └── my_script.R ├── deploy.sh └── knit.sh /.gitignore: -------------------------------------------------------------------------------- 1 | tmp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/analysis/.gitignore -------------------------------------------------------------------------------- /analysis/input/ignore/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/input/test.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | 4,5,6 -------------------------------------------------------------------------------- /analysis/main.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/analysis/main.Rmd -------------------------------------------------------------------------------- /analysis/output/abc.csv: -------------------------------------------------------------------------------- 1 | "a";"b";"c" 2 | 1;2;3 3 | 4;5;6 4 | -------------------------------------------------------------------------------- /analysis/output/ignore/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/output/xyz.csv: -------------------------------------------------------------------------------- 1 | "a";"b";"c" 2 | 1;2;3 3 | 4;5;6 4 | -------------------------------------------------------------------------------- /analysis/scripts/csf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/analysis/scripts/csf.R -------------------------------------------------------------------------------- /analysis/scripts/my_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/analysis/scripts/my_script.R -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/deploy.sh -------------------------------------------------------------------------------- /knit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grssnbchr/rddj-template/HEAD/knit.sh --------------------------------------------------------------------------------