├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── annotators.R ├── date_entity.R ├── entity-package.R ├── get_counts.R ├── location_entity.R ├── money_entity.R ├── named_entity.R ├── organization_entity.R ├── percent_entity.R ├── person_entity.R └── utils.R ├── README.Rmd ├── README.md ├── data ├── presidential_debates_2012.rda └── wiki.rda ├── inst ├── CITATION ├── build.R ├── extra_statdoc │ └── readme.R └── staticdocs │ └── index.R ├── man ├── annotators.Rd ├── date_entity.Rd ├── entity.Rd ├── location_entity.Rd ├── money_entity.Rd ├── named_entity.Rd ├── organization_entity.Rd ├── percent_entity.Rd ├── person_entity.Rd ├── plot.entity.Rd ├── presidential_debates_2012.Rd ├── print.entity.Rd └── wiki.Rd ├── tests ├── testthat.R └── testthat │ └── test-named_entity.R └── tools ├── entity_logo ├── r_entity.png ├── r_entity.pptx ├── r_entitya.png └── resize_icon.txt └── figure ├── fig.height-1.png ├── unnamed-chunk-11-1.png └── unnamed-chunk-12-1.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/NEWS -------------------------------------------------------------------------------- /R/annotators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/annotators.R -------------------------------------------------------------------------------- /R/date_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/date_entity.R -------------------------------------------------------------------------------- /R/entity-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/entity-package.R -------------------------------------------------------------------------------- /R/get_counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/get_counts.R -------------------------------------------------------------------------------- /R/location_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/location_entity.R -------------------------------------------------------------------------------- /R/money_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/money_entity.R -------------------------------------------------------------------------------- /R/named_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/named_entity.R -------------------------------------------------------------------------------- /R/organization_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/organization_entity.R -------------------------------------------------------------------------------- /R/percent_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/percent_entity.R -------------------------------------------------------------------------------- /R/person_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/person_entity.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/README.md -------------------------------------------------------------------------------- /data/presidential_debates_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/data/presidential_debates_2012.rda -------------------------------------------------------------------------------- /data/wiki.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/data/wiki.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/inst/build.R -------------------------------------------------------------------------------- /inst/extra_statdoc/readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/inst/extra_statdoc/readme.R -------------------------------------------------------------------------------- /inst/staticdocs/index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/inst/staticdocs/index.R -------------------------------------------------------------------------------- /man/annotators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/annotators.Rd -------------------------------------------------------------------------------- /man/date_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/date_entity.Rd -------------------------------------------------------------------------------- /man/entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/entity.Rd -------------------------------------------------------------------------------- /man/location_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/location_entity.Rd -------------------------------------------------------------------------------- /man/money_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/money_entity.Rd -------------------------------------------------------------------------------- /man/named_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/named_entity.Rd -------------------------------------------------------------------------------- /man/organization_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/organization_entity.Rd -------------------------------------------------------------------------------- /man/percent_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/percent_entity.Rd -------------------------------------------------------------------------------- /man/person_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/person_entity.Rd -------------------------------------------------------------------------------- /man/plot.entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/plot.entity.Rd -------------------------------------------------------------------------------- /man/presidential_debates_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/presidential_debates_2012.Rd -------------------------------------------------------------------------------- /man/print.entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/print.entity.Rd -------------------------------------------------------------------------------- /man/wiki.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/man/wiki.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-named_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tests/testthat/test-named_entity.R -------------------------------------------------------------------------------- /tools/entity_logo/r_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/entity_logo/r_entity.png -------------------------------------------------------------------------------- /tools/entity_logo/r_entity.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/entity_logo/r_entity.pptx -------------------------------------------------------------------------------- /tools/entity_logo/r_entitya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/entity_logo/r_entitya.png -------------------------------------------------------------------------------- /tools/entity_logo/resize_icon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/entity_logo/resize_icon.txt -------------------------------------------------------------------------------- /tools/figure/fig.height-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/figure/fig.height-1.png -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/figure/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/entity/HEAD/tools/figure/unnamed-chunk-12-1.png --------------------------------------------------------------------------------