├── .Rbuildignore ├── .gitignore ├── README.Rmd ├── README.md ├── kakashi.Rproj └── kakashi.css /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^README\.Rmd$ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/kakashi/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/kakashi/HEAD/README.md -------------------------------------------------------------------------------- /kakashi.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/kakashi/HEAD/kakashi.Rproj -------------------------------------------------------------------------------- /kakashi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/kakashi/HEAD/kakashi.css --------------------------------------------------------------------------------