├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── api.R ├── articles.R ├── comments.R ├── data-sections.R ├── utils-pipe.R └── utils.R ├── README.Rmd ├── README.md ├── data-raw ├── nyt_sections.R └── nyt_sections.csv ├── data └── nyt_sections.rda ├── man ├── figures │ └── logo.png ├── nyt_articles.Rd ├── nyt_comments.Rd ├── nyt_sections.Rd └── pipe.Rd └── nyt.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Michael Wayne Kearney 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/api.R -------------------------------------------------------------------------------- /R/articles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/articles.R -------------------------------------------------------------------------------- /R/comments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/comments.R -------------------------------------------------------------------------------- /R/data-sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/data-sections.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/nyt_sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/data-raw/nyt_sections.R -------------------------------------------------------------------------------- /data-raw/nyt_sections.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/data-raw/nyt_sections.csv -------------------------------------------------------------------------------- /data/nyt_sections.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/data/nyt_sections.rda -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/nyt_articles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/man/nyt_articles.Rd -------------------------------------------------------------------------------- /man/nyt_comments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/man/nyt_comments.Rd -------------------------------------------------------------------------------- /man/nyt_sections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/man/nyt_sections.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /nyt.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nyt/HEAD/nyt.Rproj --------------------------------------------------------------------------------