├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── asdf.r ├── nyt-api.r ├── nyt-archive.r ├── nyt-articles.r ├── nyt-books.r ├── nyt-community.r ├── nyt-geo.r ├── nyt-mostpopular.r ├── nyt-movies.r ├── nyt-sections.r └── nyt-wire.r ├── README.Rmd ├── README.md ├── data ├── articles-russia-sanctions-2014.rds └── articles-russia-sanctions-2016.rds ├── man ├── as.data.frame.mostpopular.Rd ├── as.data.frame.search.Rd ├── as.data.frame.timeswire.Rd ├── data.frame.mostpopular.Rd ├── data.frame.search.Rd ├── data.frame.timeswire.Rd ├── figures │ └── logo.png ├── get_media.Rd ├── news_sections.Rd ├── nyt_archive.Rd ├── nyt_books.Rd ├── nyt_community.Rd ├── nyt_geo.Rd ├── nyt_mostpopular.Rd ├── nyt_movies.Rd ├── nyt_search.Rd └── nyt_timeswire.Rd └── nytimes.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .#* 3 | .Rproj.user 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Michael W. Kearney 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/asdf.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/nyt-api.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-api.r -------------------------------------------------------------------------------- /R/nyt-archive.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-archive.r -------------------------------------------------------------------------------- /R/nyt-articles.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-articles.r -------------------------------------------------------------------------------- /R/nyt-books.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-books.r -------------------------------------------------------------------------------- /R/nyt-community.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-community.r -------------------------------------------------------------------------------- /R/nyt-geo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-geo.r -------------------------------------------------------------------------------- /R/nyt-mostpopular.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-mostpopular.r -------------------------------------------------------------------------------- /R/nyt-movies.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-movies.r -------------------------------------------------------------------------------- /R/nyt-sections.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-sections.r -------------------------------------------------------------------------------- /R/nyt-wire.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/R/nyt-wire.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/README.md -------------------------------------------------------------------------------- /data/articles-russia-sanctions-2014.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/data/articles-russia-sanctions-2014.rds -------------------------------------------------------------------------------- /data/articles-russia-sanctions-2016.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/data/articles-russia-sanctions-2016.rds -------------------------------------------------------------------------------- /man/as.data.frame.mostpopular.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/as.data.frame.mostpopular.Rd -------------------------------------------------------------------------------- /man/as.data.frame.search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/as.data.frame.search.Rd -------------------------------------------------------------------------------- /man/as.data.frame.timeswire.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/as.data.frame.timeswire.Rd -------------------------------------------------------------------------------- /man/data.frame.mostpopular.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/data.frame.mostpopular.Rd -------------------------------------------------------------------------------- /man/data.frame.search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/data.frame.search.Rd -------------------------------------------------------------------------------- /man/data.frame.timeswire.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/data.frame.timeswire.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_media.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/get_media.Rd -------------------------------------------------------------------------------- /man/news_sections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/news_sections.Rd -------------------------------------------------------------------------------- /man/nyt_archive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_archive.Rd -------------------------------------------------------------------------------- /man/nyt_books.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_books.Rd -------------------------------------------------------------------------------- /man/nyt_community.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_community.Rd -------------------------------------------------------------------------------- /man/nyt_geo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_geo.Rd -------------------------------------------------------------------------------- /man/nyt_mostpopular.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_mostpopular.Rd -------------------------------------------------------------------------------- /man/nyt_movies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_movies.Rd -------------------------------------------------------------------------------- /man/nyt_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_search.Rd -------------------------------------------------------------------------------- /man/nyt_timeswire.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/man/nyt_timeswire.Rd -------------------------------------------------------------------------------- /nytimes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/nytimes/HEAD/nytimes.Rproj --------------------------------------------------------------------------------