Skip to main content
Module

x/simplestatistics/index.js>bernoulliDistribution

simple statistics for node & browser javascript
Go to Latest
function bernoulliDistribution
import { bernoulliDistribution } from "https://deno.land/x/simplestatistics@v7.7.5/index.js";

The Bernoulli distribution is the probability discrete distribution of a random variable which takes value 1 with success probability p and value 0 with failure probability q = 1 - p. It can be used, for example, to represent the toss of a coin, where "1" is defined to mean "heads" and "0" is defined to mean "tails" (or vice versa). It is a special case of a Binomial Distribution where n = 1.

Examples

bernoulliDistribution(0.3); // => [0.7, 0.3]

Parameters

p

input value, between 0 and 1 inclusive