├── .github └── workflows │ ├── r.yml │ └── test-coverage.yaml ├── .gitignore ├── README.md ├── codecov.yml └── mallet ├── .Rbuildignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── mallet.R ├── mallet_jar.R ├── mallet_state_io.R ├── mallet_stopwords.R └── onLoad.R ├── data-raw ├── sotu.R └── state_of_the_union_1790_2009.txt ├── data └── sotu.rda ├── inst ├── java │ └── rmallet-20220712.jar └── stoplists │ ├── README.md │ ├── de.txt │ ├── en.txt │ ├── fi.txt │ ├── fr.txt │ └── jp.txt ├── java └── README.md ├── man ├── MalletLDA.Rd ├── load.mallet.state.Rd ├── mallet-package.Rd ├── mallet.doc.topics.Rd ├── mallet.import.Rd ├── mallet.read.dir.Rd ├── mallet.subset.topic.words.Rd ├── mallet.top.words.Rd ├── mallet.topic.hclust.Rd ├── mallet.topic.labels.Rd ├── mallet.topic.model.read.Rd ├── mallet.topic.words.Rd ├── mallet.word.freqs.Rd ├── mallet_jar.Rd ├── mallet_stoplist_file_path.Rd ├── mallet_supported_stoplists.Rd ├── save.mallet.instances.Rd ├── save.mallet.state.Rd └── sotu.Rd ├── tests ├── testthat.R └── testthat │ ├── test_examples.R │ ├── test_mallet-functionality.R │ ├── test_mallet-io.R │ ├── test_mallet.R │ └── test_mallet_deprecated.R └── vignettes ├── mallet.Rmd └── mallet.html /.github/workflows/r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/.github/workflows/r.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | fixes: 2 | - "::mallet/" 3 | -------------------------------------------------------------------------------- /mallet/.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^data-raw$ 2 | -------------------------------------------------------------------------------- /mallet/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/DESCRIPTION -------------------------------------------------------------------------------- /mallet/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2013 2 | COPYRIGHT HOLDER: David Mimno 3 | -------------------------------------------------------------------------------- /mallet/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/NAMESPACE -------------------------------------------------------------------------------- /mallet/R/mallet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/R/mallet.R -------------------------------------------------------------------------------- /mallet/R/mallet_jar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/R/mallet_jar.R -------------------------------------------------------------------------------- /mallet/R/mallet_state_io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/R/mallet_state_io.R -------------------------------------------------------------------------------- /mallet/R/mallet_stopwords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/R/mallet_stopwords.R -------------------------------------------------------------------------------- /mallet/R/onLoad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/R/onLoad.R -------------------------------------------------------------------------------- /mallet/data-raw/sotu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/data-raw/sotu.R -------------------------------------------------------------------------------- /mallet/data-raw/state_of_the_union_1790_2009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/data-raw/state_of_the_union_1790_2009.txt -------------------------------------------------------------------------------- /mallet/data/sotu.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/data/sotu.rda -------------------------------------------------------------------------------- /mallet/inst/java/rmallet-20220712.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/java/rmallet-20220712.jar -------------------------------------------------------------------------------- /mallet/inst/stoplists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/README.md -------------------------------------------------------------------------------- /mallet/inst/stoplists/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/de.txt -------------------------------------------------------------------------------- /mallet/inst/stoplists/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/en.txt -------------------------------------------------------------------------------- /mallet/inst/stoplists/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/fi.txt -------------------------------------------------------------------------------- /mallet/inst/stoplists/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/fr.txt -------------------------------------------------------------------------------- /mallet/inst/stoplists/jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/inst/stoplists/jp.txt -------------------------------------------------------------------------------- /mallet/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/java/README.md -------------------------------------------------------------------------------- /mallet/man/MalletLDA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/MalletLDA.Rd -------------------------------------------------------------------------------- /mallet/man/load.mallet.state.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/load.mallet.state.Rd -------------------------------------------------------------------------------- /mallet/man/mallet-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet-package.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.doc.topics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.doc.topics.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.import.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.import.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.read.dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.read.dir.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.subset.topic.words.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.subset.topic.words.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.top.words.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.top.words.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.topic.hclust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.topic.hclust.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.topic.labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.topic.labels.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.topic.model.read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.topic.model.read.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.topic.words.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.topic.words.Rd -------------------------------------------------------------------------------- /mallet/man/mallet.word.freqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet.word.freqs.Rd -------------------------------------------------------------------------------- /mallet/man/mallet_jar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet_jar.Rd -------------------------------------------------------------------------------- /mallet/man/mallet_stoplist_file_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet_stoplist_file_path.Rd -------------------------------------------------------------------------------- /mallet/man/mallet_supported_stoplists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/mallet_supported_stoplists.Rd -------------------------------------------------------------------------------- /mallet/man/save.mallet.instances.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/save.mallet.instances.Rd -------------------------------------------------------------------------------- /mallet/man/save.mallet.state.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/save.mallet.state.Rd -------------------------------------------------------------------------------- /mallet/man/sotu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/man/sotu.Rd -------------------------------------------------------------------------------- /mallet/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat.R -------------------------------------------------------------------------------- /mallet/tests/testthat/test_examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat/test_examples.R -------------------------------------------------------------------------------- /mallet/tests/testthat/test_mallet-functionality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat/test_mallet-functionality.R -------------------------------------------------------------------------------- /mallet/tests/testthat/test_mallet-io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat/test_mallet-io.R -------------------------------------------------------------------------------- /mallet/tests/testthat/test_mallet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat/test_mallet.R -------------------------------------------------------------------------------- /mallet/tests/testthat/test_mallet_deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/tests/testthat/test_mallet_deprecated.R -------------------------------------------------------------------------------- /mallet/vignettes/mallet.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/vignettes/mallet.Rmd -------------------------------------------------------------------------------- /mallet/vignettes/mallet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimno/RMallet/HEAD/mallet/vignettes/mallet.html --------------------------------------------------------------------------------