├── .editorconfig ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── data ├── contractions.json └── stopwords.json ├── examples ├── creating_corpus.js ├── get_terms.js └── group_corpora.js ├── lib ├── corpus.js ├── document.js ├── dtm.js ├── expand_contractions.js ├── fill_zeros.js ├── index.js ├── tdm.js └── weight_tf_idf.js ├── package.json └── test ├── test.js └── test.weight_tf_idf.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | 4 | -------------------------------------------------------------------------------- /data/contractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/data/contractions.json -------------------------------------------------------------------------------- /data/stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/data/stopwords.json -------------------------------------------------------------------------------- /examples/creating_corpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/examples/creating_corpus.js -------------------------------------------------------------------------------- /examples/get_terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/examples/get_terms.js -------------------------------------------------------------------------------- /examples/group_corpora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/examples/group_corpora.js -------------------------------------------------------------------------------- /lib/corpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/corpus.js -------------------------------------------------------------------------------- /lib/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/document.js -------------------------------------------------------------------------------- /lib/dtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/dtm.js -------------------------------------------------------------------------------- /lib/expand_contractions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/expand_contractions.js -------------------------------------------------------------------------------- /lib/fill_zeros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/fill_zeros.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/tdm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/tdm.js -------------------------------------------------------------------------------- /lib/weight_tf_idf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/lib/weight_tf_idf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.weight_tf_idf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/text-miner/HEAD/test/test.weight_tf_idf.js --------------------------------------------------------------------------------