npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

trials

v1.0.0

Published

Statistical trials to generate simple outcomes

Downloads

959

Readme

Trials

npm status build status dependency status coverage status

Trials is a small library for generating outcomes conforming to simple statistical rules by running repeated trials in these systems.

It can pick from a probability mass function (pmf), do repeated Bernoulli trials for elements in an array, unique Bernoulli trials for every element of an object of key : probability form and more.

Usage

Require and call one of the functions within.

var t = require('trials');
for (var i = 0; i < 10; i += 1) {
  // collect results of 10 trials where we pick exactly one of the object below
  t.singlePmf({
    attack: 0.6,
    runaway: 0.3,
    eatlunch: 0.1
  };
}

Outputs something like this:

runaway
attack
attack
eatlunch
attack
attack
runaway
eatlunch
attack
attack

Results vary based on rolls - this one had more lunches than an average roll.

API

singlePmf(obj)

Takes an object of form key : probability (which acts as the probability mass function for all the keys in the object) and picks exactly one element according the a roll mapped to the mass function. The introduction above has an example of this.

An important thing to note with this function is that the values of the object must sum to 1 for it to represent a proper mass function (and to guarantee a return value).

single(ary)

Takes an Array and picks exactly one element from the array with uniform probability.

for (var i = 0; i < 5; i += 1) t.single(['hi', 'thar', 'miss']);

Example output:

hi
miss
thar
miss
thar

multipleProbs(obj)

Takes an object of individual probabilities, does one Bernoulli trial for each element of the object with the respective probabilities and collects all the keys of the successes.

for (var i = 0; i < 5; i += 1) {
  t.multipleProbs({
    a: 0.4,
    b: 0.4,
    c: 0.1
  });
}

Example output:

[ 'b' ]
[ 'a', 'b' ]
[ 'b' ]
[]
[ 'a', 'b' ]

multiple(ary, p)

Takes an array and a fixed probability, does one Bernoulli trial for each element in the array with the defined uniform probability, and collects all the successes.

for (var i = 0; i < 5; i += 1) t.multiple(['a', 'b', 'c'], 0.4);

Example output:

[ 'a' ]
[ 'a', 'b', 'c' ]
[]
[ 'b', 'c' ]
[ 'b' ]

By virtue of being repeated, independent Bernoulli trials with constant probability; the number of picks from the array follows a Binomial distribution B(ary.length, p).

range(start, end)

Gets an integer in the range start to (and including) end with uniform probability. Equivalent to single on the array [start, start+1, ... , end], but more efficient.

cluster(ary, max, p)

Cluster picks {1, 2, ..., max} elements uniformly from the array with probability p, or it picks none at all with probability 1-p.

This is essentially a uniform distribution within a uniform distribution. It's uniform in that we either pick or don't pick with probability p, and if we pick, then how many we pick is uniformly distributed in the defined range. This creates the clusters, rather than true randomness.

for (var i = 0; i < 5; i += 1) t.cluster([1, 2, 3, 4, 5], 3, 0.6);

Example output:

[ 2, 1 ]
[ 4, 1, 5 ]
[ 1 ]
[]
[ 3, 1, 4 ]
[ 2 ]

Installation

$ npm install trials

License

MIT-Licensed. See LICENSE file for details.