├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── coreNLPsetup_rexports.R ├── sentiment_stanford.R ├── sentiment_stanford_by.R ├── sentimentr_reexports.R ├── stansent-package.R └── utils.R ├── README.Rmd ├── README.md ├── inst ├── CITATION ├── build.R ├── extra_statdoc │ └── readme.R ├── staticdocs │ └── index.R └── update_stanford_version.R ├── man ├── plot.sentiment.Rd ├── plot.sentiment_stanford_by.Rd ├── reexports.Rd ├── sentiment_stanford.Rd ├── sentiment_stanford_by.Rd └── stansent.Rd ├── tests ├── testthat.R └── testthat │ ├── test-check_java.R │ ├── test-check_setup.R │ ├── test-check_stanford_installed.R │ └── test-sentiment_stanford.R └── tools ├── figure ├── highlight.png ├── unnamed-chunk-10-1.png └── unnamed-chunk-11-1.png └── stansent_logo ├── core-nlp.jpg ├── core-nlpa.jpg └── resize_icon.txt /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/coreNLPsetup_rexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/coreNLPsetup_rexports.R -------------------------------------------------------------------------------- /R/sentiment_stanford.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/sentiment_stanford.R -------------------------------------------------------------------------------- /R/sentiment_stanford_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/sentiment_stanford_by.R -------------------------------------------------------------------------------- /R/sentimentr_reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/sentimentr_reexports.R -------------------------------------------------------------------------------- /R/stansent-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/stansent-package.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/inst/build.R -------------------------------------------------------------------------------- /inst/extra_statdoc/readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/inst/extra_statdoc/readme.R -------------------------------------------------------------------------------- /inst/staticdocs/index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/inst/staticdocs/index.R -------------------------------------------------------------------------------- /inst/update_stanford_version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/inst/update_stanford_version.R -------------------------------------------------------------------------------- /man/plot.sentiment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/plot.sentiment.Rd -------------------------------------------------------------------------------- /man/plot.sentiment_stanford_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/plot.sentiment_stanford_by.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/sentiment_stanford.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/sentiment_stanford.Rd -------------------------------------------------------------------------------- /man/sentiment_stanford_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/sentiment_stanford_by.Rd -------------------------------------------------------------------------------- /man/stansent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/man/stansent.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-check_java.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tests/testthat/test-check_java.R -------------------------------------------------------------------------------- /tests/testthat/test-check_setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tests/testthat/test-check_setup.R -------------------------------------------------------------------------------- /tests/testthat/test-check_stanford_installed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tests/testthat/test-check_stanford_installed.R -------------------------------------------------------------------------------- /tests/testthat/test-sentiment_stanford.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tests/testthat/test-sentiment_stanford.R -------------------------------------------------------------------------------- /tools/figure/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/figure/highlight.png -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/figure/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/figure/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /tools/stansent_logo/core-nlp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/stansent_logo/core-nlp.jpg -------------------------------------------------------------------------------- /tools/stansent_logo/core-nlpa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/stansent_logo/core-nlpa.jpg -------------------------------------------------------------------------------- /tools/stansent_logo/resize_icon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/stansent/HEAD/tools/stansent_logo/resize_icon.txt --------------------------------------------------------------------------------