├── .Rbuildignore ├── .editorconfig ├── .gitignore ├── .here ├── .lintr ├── .nvmrc ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── analyze.R ├── functions.R ├── process.R └── visualize.R ├── README.md ├── config.R ├── data ├── cache │ └── .gitkeep ├── out │ └── .gitkeep ├── processed │ └── .gitkeep └── raw │ └── .gitkeep ├── plots └── .gitkeep ├── reports ├── .gitkeep └── notebook.Rmd ├── run.R ├── scrape └── scrape.R └── startr.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/.gitignore -------------------------------------------------------------------------------- /.here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/.lintr -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.11.1 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/R/analyze.R -------------------------------------------------------------------------------- /R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/R/functions.R -------------------------------------------------------------------------------- /R/process.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/R/process.R -------------------------------------------------------------------------------- /R/visualize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/R/visualize.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/README.md -------------------------------------------------------------------------------- /config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/config.R -------------------------------------------------------------------------------- /data/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/out/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/processed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/notebook.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/reports/notebook.Rmd -------------------------------------------------------------------------------- /run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/run.R -------------------------------------------------------------------------------- /scrape/scrape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/scrape/scrape.R -------------------------------------------------------------------------------- /startr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globeandmail/startr/HEAD/startr.Rproj --------------------------------------------------------------------------------