├── DESCRIPTION ├── MD5 ├── NAMESPACE ├── R ├── RcppExports.R ├── dictionary.R ├── get_parameter.R ├── jst.R ├── jstManyRuns.R ├── jst_reversed.R ├── sentitopics.R └── topNwords.R ├── README.md ├── inst └── doc │ ├── rJST.R │ ├── rJST.Rmd │ └── rJST.html ├── man ├── JST.result-class.Rd ├── JST_reversed.result-class.Rd ├── dictionary_wordstem.Rd ├── get_parameter.Rd ├── is.JST.result.Rd ├── is.JST_reversed.result.Rd ├── jst.Rd ├── jstManyRuns.Rd ├── jst_reversed.Rd ├── paradigm.Rd ├── sentitopics-package.Rd ├── top20words-method.Rd └── topNwords-method.Rd ├── src ├── RcppExports.cpp ├── RcppExports.o ├── _jst.cpp ├── _jst.h ├── _jst.o ├── _jstreversed.cpp ├── _jstreversed.h ├── _jstreversed.o ├── math_func.cpp ├── math_func.h ├── math_func.o ├── polya_fit_simple.cpp ├── polya_fit_simple.h ├── polya_fit_simple.o ├── sentitopics.dll ├── sentitopics.so ├── standalonemethods.cpp ├── standalonemethods.h └── standalonemethods.o ├── tests ├── testthat.R └── testthat │ ├── test-jst.R │ └── test-jst_reversed.R └── vignettes └── rJST.Rmd /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/MD5 -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/dictionary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/dictionary.R -------------------------------------------------------------------------------- /R/get_parameter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/get_parameter.R -------------------------------------------------------------------------------- /R/jst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/jst.R -------------------------------------------------------------------------------- /R/jstManyRuns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/jstManyRuns.R -------------------------------------------------------------------------------- /R/jst_reversed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/jst_reversed.R -------------------------------------------------------------------------------- /R/sentitopics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/sentitopics.R -------------------------------------------------------------------------------- /R/topNwords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/R/topNwords.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/README.md -------------------------------------------------------------------------------- /inst/doc/rJST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/inst/doc/rJST.R -------------------------------------------------------------------------------- /inst/doc/rJST.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/inst/doc/rJST.Rmd -------------------------------------------------------------------------------- /inst/doc/rJST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/inst/doc/rJST.html -------------------------------------------------------------------------------- /man/JST.result-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/JST.result-class.Rd -------------------------------------------------------------------------------- /man/JST_reversed.result-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/JST_reversed.result-class.Rd -------------------------------------------------------------------------------- /man/dictionary_wordstem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/dictionary_wordstem.Rd -------------------------------------------------------------------------------- /man/get_parameter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/get_parameter.Rd -------------------------------------------------------------------------------- /man/is.JST.result.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/is.JST.result.Rd -------------------------------------------------------------------------------- /man/is.JST_reversed.result.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/is.JST_reversed.result.Rd -------------------------------------------------------------------------------- /man/jst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/jst.Rd -------------------------------------------------------------------------------- /man/jstManyRuns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/jstManyRuns.Rd -------------------------------------------------------------------------------- /man/jst_reversed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/jst_reversed.Rd -------------------------------------------------------------------------------- /man/paradigm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/paradigm.Rd -------------------------------------------------------------------------------- /man/sentitopics-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/sentitopics-package.Rd -------------------------------------------------------------------------------- /man/top20words-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/top20words-method.Rd -------------------------------------------------------------------------------- /man/topNwords-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/man/topNwords-method.Rd -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/RcppExports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/RcppExports.o -------------------------------------------------------------------------------- /src/_jst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jst.cpp -------------------------------------------------------------------------------- /src/_jst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jst.h -------------------------------------------------------------------------------- /src/_jst.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jst.o -------------------------------------------------------------------------------- /src/_jstreversed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jstreversed.cpp -------------------------------------------------------------------------------- /src/_jstreversed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jstreversed.h -------------------------------------------------------------------------------- /src/_jstreversed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/_jstreversed.o -------------------------------------------------------------------------------- /src/math_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/math_func.cpp -------------------------------------------------------------------------------- /src/math_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/math_func.h -------------------------------------------------------------------------------- /src/math_func.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/math_func.o -------------------------------------------------------------------------------- /src/polya_fit_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/polya_fit_simple.cpp -------------------------------------------------------------------------------- /src/polya_fit_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/polya_fit_simple.h -------------------------------------------------------------------------------- /src/polya_fit_simple.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/polya_fit_simple.o -------------------------------------------------------------------------------- /src/sentitopics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/sentitopics.dll -------------------------------------------------------------------------------- /src/sentitopics.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/sentitopics.so -------------------------------------------------------------------------------- /src/standalonemethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/standalonemethods.cpp -------------------------------------------------------------------------------- /src/standalonemethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/standalonemethods.h -------------------------------------------------------------------------------- /src/standalonemethods.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/src/standalonemethods.o -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-jst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/tests/testthat/test-jst.R -------------------------------------------------------------------------------- /tests/testthat/test-jst_reversed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/tests/testthat/test-jst_reversed.R -------------------------------------------------------------------------------- /vignettes/rJST.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpipal/sentitopics/HEAD/vignettes/rJST.Rmd --------------------------------------------------------------------------------