Random.js
Random number generator of many statistical distributions.
Install / Use
/learn @ericzhang-cn/Random.jsREADME
Random number generator of many statistical distributions.
Demo: http://blog.codinglabs.org/demo/distributions.html
Algorithm reference: http://ftp.arl.mil/random/random.pdf
Installation
npm install random-distrib.js
Example
Browsers
<script type="text/javascript" src="/path/to/random.js"></script>
<!-- html -->
<script type="text/javascript">
var newPoint = random.normal(0, 1);
</script>
Node
var random = require('/path/to/random');
var newPoint = random.normal(0, 1);
Probability Distribution Functions
Continuous Distributions
arcsine(min, max);
beta(v, w, min, max);
cauchy(a, b);
chiSquare(df);
consine(min, max);
doubleLog(min, max);
erlang(b, c);
exponential(a, b);
extremeValue(a, b);
fRatio(v, w);
gamma(a, b, c);
laplace(a, b);
logarithmic(min, max);
logistic(a, b);
lognormal(a, mu, sigma);
normal(mu, sigma);
parabolic(min, max);
pareto(c);
pearson5(b, c);
pearson6(b, v, w);
power(c);
rayleigh(a, b);
studentT(df);
triangular(min, max, c);
uniform(min, max);
userSpecified(usf, xMin, xMax, yMin, yMax);
weibull(a, b, c);
Discrete Distributions
bernoulli(p);
binomial(n, p);
geometric(p);
hypergeometric(n, N, k);
negativeBinomial(s, p);
pascal(s, p);
poisson(mu);
uniformDiscrete(i, j);
Related Skills
node-connect
350.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
110.4kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
350.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
350.8kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。

