├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── RDSTK-pkg.R ├── coordinates-to-politics.R ├── coordinates-to-statistics.R ├── html-to-text.R ├── ip-to-coordinates.R ├── street-to-coordinates.R ├── text-to-people.R ├── text-to-sentences.R ├── text-to-sentiment.R ├── text-to-times.R └── zzz.R ├── README.md ├── codecov.yml ├── cran-comments.md └── man ├── RDSTK.Rd ├── coordinates2politics.Rd ├── coordinates2statistics.Rd ├── html2text.Rd ├── ip2coordinates.Rd ├── street2coordinates.Rd ├── text2people.Rd ├── text2sentences.Rd ├── text2sentiment.Rd └── text2times.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RDSTK-pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/RDSTK-pkg.R -------------------------------------------------------------------------------- /R/coordinates-to-politics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/coordinates-to-politics.R -------------------------------------------------------------------------------- /R/coordinates-to-statistics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/coordinates-to-statistics.R -------------------------------------------------------------------------------- /R/html-to-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/html-to-text.R -------------------------------------------------------------------------------- /R/ip-to-coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/ip-to-coordinates.R -------------------------------------------------------------------------------- /R/street-to-coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/street-to-coordinates.R -------------------------------------------------------------------------------- /R/text-to-people.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/text-to-people.R -------------------------------------------------------------------------------- /R/text-to-sentences.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/text-to-sentences.R -------------------------------------------------------------------------------- /R/text-to-sentiment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/text-to-sentiment.R -------------------------------------------------------------------------------- /R/text-to-times.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/text-to-times.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/RDSTK.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/RDSTK.Rd -------------------------------------------------------------------------------- /man/coordinates2politics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/coordinates2politics.Rd -------------------------------------------------------------------------------- /man/coordinates2statistics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/coordinates2statistics.Rd -------------------------------------------------------------------------------- /man/html2text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/html2text.Rd -------------------------------------------------------------------------------- /man/ip2coordinates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/ip2coordinates.Rd -------------------------------------------------------------------------------- /man/street2coordinates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/street2coordinates.Rd -------------------------------------------------------------------------------- /man/text2people.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/text2people.Rd -------------------------------------------------------------------------------- /man/text2sentences.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/text2sentences.Rd -------------------------------------------------------------------------------- /man/text2sentiment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/text2sentiment.Rd -------------------------------------------------------------------------------- /man/text2times.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtelmore/RDSTK/HEAD/man/text2times.Rd --------------------------------------------------------------------------------