├── .Rbuildignore ├── .github └── workflows │ └── check-standard.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── factiva.R ├── import.R ├── integrum.R ├── kikuzo.R ├── lexis-advance.R ├── lexis.R ├── nexis-uk.R ├── nexis.R ├── utils.R └── yomidasu.R ├── README.Rmd ├── README.md ├── images ├── factiva.png └── kikuzo.png ├── man ├── check_gaps.Rd └── import.Rd ├── newspapers.Rproj └── tests ├── data ├── factiva │ ├── chinese-ui.html │ ├── chosun_ilbo_1_2018-05-28.html │ ├── german-ui.html │ ├── irish-independence_1_2017-11-14.html │ ├── nyt_1_1993-01-03.html │ └── suddeutsche_1_2017-11-19.html ├── integrum │ ├── channel1_20050201-20050228_0001-0059_0059.xlsx │ ├── moscow_1993-06-06_1994-09-02.html │ └── ntv_20121201-20121231_0001-0100_0190.xlsx ├── kikuzo │ ├── kikuzo_1985-01-01_001.html │ ├── kikuzo_1985-01-01_002.html │ └── kikuzo_raw.html ├── lexis │ ├── guardian1.docx │ ├── guardian2.docx │ ├── guardian3.docx │ ├── misc.docx │ ├── nyt1.docx │ ├── nyt2.docx │ ├── usa-today.docx │ └── washington-post.docx ├── nexis │ ├── .~lock.nyt.docx# │ ├── .~lock.uastoday.docx# │ ├── .~lock.washington-post.docx# │ ├── afp_2013-03-12_0501.html │ ├── guardian_1986-01-01_0001.html │ ├── irish-times_1995-06-12_0001.html │ ├── nyt.docx │ ├── spiegel_2012-02-01_0001.html │ ├── usa-today.docx │ └── washington-post.docx └── yomidasu │ ├── .directory │ ├── yomidasu_1987-01-01_001.html │ ├── yomidasu_2009-01-01_001.html │ └── yomidasu_2018-01-01_001.html ├── testthat.R └── testthat ├── test-factiva.R ├── test-integrum.R ├── test-kikuzo.R ├── test-lexis.R ├── test-nexis.R ├── test-utils.R └── test-yomidasu.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/factiva.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/factiva.R -------------------------------------------------------------------------------- /R/import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/import.R -------------------------------------------------------------------------------- /R/integrum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/integrum.R -------------------------------------------------------------------------------- /R/kikuzo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/kikuzo.R -------------------------------------------------------------------------------- /R/lexis-advance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/lexis-advance.R -------------------------------------------------------------------------------- /R/lexis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/lexis.R -------------------------------------------------------------------------------- /R/nexis-uk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/nexis-uk.R -------------------------------------------------------------------------------- /R/nexis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/nexis.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/yomidasu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/R/yomidasu.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/README.md -------------------------------------------------------------------------------- /images/factiva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/images/factiva.png -------------------------------------------------------------------------------- /images/kikuzo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/images/kikuzo.png -------------------------------------------------------------------------------- /man/check_gaps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/man/check_gaps.Rd -------------------------------------------------------------------------------- /man/import.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/man/import.Rd -------------------------------------------------------------------------------- /newspapers.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/newspapers.Rproj -------------------------------------------------------------------------------- /tests/data/factiva/chinese-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/chinese-ui.html -------------------------------------------------------------------------------- /tests/data/factiva/chosun_ilbo_1_2018-05-28.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/chosun_ilbo_1_2018-05-28.html -------------------------------------------------------------------------------- /tests/data/factiva/german-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/german-ui.html -------------------------------------------------------------------------------- /tests/data/factiva/irish-independence_1_2017-11-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/irish-independence_1_2017-11-14.html -------------------------------------------------------------------------------- /tests/data/factiva/nyt_1_1993-01-03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/nyt_1_1993-01-03.html -------------------------------------------------------------------------------- /tests/data/factiva/suddeutsche_1_2017-11-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/factiva/suddeutsche_1_2017-11-19.html -------------------------------------------------------------------------------- /tests/data/integrum/channel1_20050201-20050228_0001-0059_0059.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/integrum/channel1_20050201-20050228_0001-0059_0059.xlsx -------------------------------------------------------------------------------- /tests/data/integrum/moscow_1993-06-06_1994-09-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/integrum/moscow_1993-06-06_1994-09-02.html -------------------------------------------------------------------------------- /tests/data/integrum/ntv_20121201-20121231_0001-0100_0190.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/integrum/ntv_20121201-20121231_0001-0100_0190.xlsx -------------------------------------------------------------------------------- /tests/data/kikuzo/kikuzo_1985-01-01_001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/kikuzo/kikuzo_1985-01-01_001.html -------------------------------------------------------------------------------- /tests/data/kikuzo/kikuzo_1985-01-01_002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/kikuzo/kikuzo_1985-01-01_002.html -------------------------------------------------------------------------------- /tests/data/kikuzo/kikuzo_raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/kikuzo/kikuzo_raw.html -------------------------------------------------------------------------------- /tests/data/lexis/guardian1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/guardian1.docx -------------------------------------------------------------------------------- /tests/data/lexis/guardian2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/guardian2.docx -------------------------------------------------------------------------------- /tests/data/lexis/guardian3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/guardian3.docx -------------------------------------------------------------------------------- /tests/data/lexis/misc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/misc.docx -------------------------------------------------------------------------------- /tests/data/lexis/nyt1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/nyt1.docx -------------------------------------------------------------------------------- /tests/data/lexis/nyt2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/nyt2.docx -------------------------------------------------------------------------------- /tests/data/lexis/usa-today.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/usa-today.docx -------------------------------------------------------------------------------- /tests/data/lexis/washington-post.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/lexis/washington-post.docx -------------------------------------------------------------------------------- /tests/data/nexis/.~lock.nyt.docx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/.~lock.nyt.docx# -------------------------------------------------------------------------------- /tests/data/nexis/.~lock.uastoday.docx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/.~lock.uastoday.docx# -------------------------------------------------------------------------------- /tests/data/nexis/.~lock.washington-post.docx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/.~lock.washington-post.docx# -------------------------------------------------------------------------------- /tests/data/nexis/afp_2013-03-12_0501.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/afp_2013-03-12_0501.html -------------------------------------------------------------------------------- /tests/data/nexis/guardian_1986-01-01_0001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/guardian_1986-01-01_0001.html -------------------------------------------------------------------------------- /tests/data/nexis/irish-times_1995-06-12_0001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/irish-times_1995-06-12_0001.html -------------------------------------------------------------------------------- /tests/data/nexis/nyt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/nyt.docx -------------------------------------------------------------------------------- /tests/data/nexis/spiegel_2012-02-01_0001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/spiegel_2012-02-01_0001.html -------------------------------------------------------------------------------- /tests/data/nexis/usa-today.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/usa-today.docx -------------------------------------------------------------------------------- /tests/data/nexis/washington-post.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/nexis/washington-post.docx -------------------------------------------------------------------------------- /tests/data/yomidasu/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2019,3,7,2,18,16 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /tests/data/yomidasu/yomidasu_1987-01-01_001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/yomidasu/yomidasu_1987-01-01_001.html -------------------------------------------------------------------------------- /tests/data/yomidasu/yomidasu_2009-01-01_001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/yomidasu/yomidasu_2009-01-01_001.html -------------------------------------------------------------------------------- /tests/data/yomidasu/yomidasu_2018-01-01_001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/data/yomidasu/yomidasu_2018-01-01_001.html -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-factiva.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-factiva.R -------------------------------------------------------------------------------- /tests/testthat/test-integrum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-integrum.R -------------------------------------------------------------------------------- /tests/testthat/test-kikuzo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-kikuzo.R -------------------------------------------------------------------------------- /tests/testthat/test-lexis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-lexis.R -------------------------------------------------------------------------------- /tests/testthat/test-nexis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-nexis.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-yomidasu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koheiw/newspapers/HEAD/tests/testthat/test-yomidasu.R --------------------------------------------------------------------------------