Textmining
A set of tools for text mining and performing text analysis in Javascript.
So far just a simple implementation of a Bag Of Words (BOW) model, as seen in chapter 10 of the excellent book 'Data Science for Business', by Foster Provost and Tom Fawcett.
This module has not been throughly tested and is a work in progress, so please report any bug or improvement suggestions.
Installation
npm install textmining
Usage
var tm = require('textmining');
var verses = [
"I was angry with my friend:",
"I told my wrath, my wrath did end.",
"I was angry with my foe:",
"I told it not, my wrath did grow.",
"And I watered it in fears,",
"Night and morning with my tears;",
"And I sunned it with smiles,",
"And with soft deceitful wiles.",
"And it grew both day and night,",
"Till it bore an apple bright.",
"And my foe beheld it shine.",
"And he knew that it was mine,",
"And into my garden stole",
"When the night had veiled the pole;",
"In the morning glad I see",
"My foe outstretched beneath the tree.",
];
var bag = tm.bagOfWords( verses, true, true );
var termsByFrequency = bag.terms.sort(function(a,b){
if( a.frequency > b.frequency ) return -1;
else if( a.frequency < b.frequency ) return 1;
else return 0;
});
console.log( termsByFrequency.slice(0, 10) );
var termsInFirstVerses = bag.documents.slice(0,4).map(function(d){ return d.terms })
console.log( termsInFirstVerses );