Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including markov-chains with all npm packages installed. Try it out:

const Chain = require('markov-chains').default; // our states (an array of arrays) const states = [ // week 1 [ { temp: 'hot', weather: 'sunny' }, { temp: 'hot', weather: 'cloudy' }, { temp: 'warm', weather: 'cloudy' }, { temp: 'warm', weather: 'cloudy' }, { temp: 'warm', weather: 'rainy' }, { temp: 'cool', weather: 'cloudy' }, { temp: 'warm', weather: 'sunny' }, ], // week 2 [ { temp: 'warm', weather: 'sunny' }, { temp: 'warm', weather: 'cloudy' }, { temp: 'warm', weather: 'cloudy' }, { temp: 'warm', weather: 'sunny' }, { temp: 'hot', weather: 'sunny' }, { temp: 'hot', weather: 'sunny' }, { temp: 'warm', weather: 'sunny' }, ], // etc. ]; // build the chain const chain = new Chain(states); // generate a forecast const forecast = chain.walk(); console.log(forecast);

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

markov-chains v1.0.2

A general purpose markov chain generator

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free