markoff

2.2.0 • Public • Published

markoff

Markov Chaining

Example

var Markov = require("markoff");
var mark = new Markov();
 
[
  "the quick brown fox jumps",
  "be quick now",
  "now is the time for all good men"
].forEach(function(sentence) {
  mark.addTokens(sentence.split(/\s+/g));
});
 
console.log(mark.chain(4).join(' '));
// might print something like "be quick brown fox" or "the quick now is"

Docs

var mark = new Markov(options)

// TODO. State what the module does.

Installation

npm install markoff

Tests

npm test

Contributors

  • Joshua T Corbin

MIT Licenced

Readme

Keywords

none

Package Sidebar

Install

npm i markoff

Weekly Downloads

11

Version

2.2.0

License

none

Last publish

Collaborators

  • jcorbin