Public
Edited
Jul 24, 2020
1 fork
3 stars
Insert cell
Insert cell
Insert cell
function randomPoissonSimple(lambda) {
var Exp = d3r.randomExponential(1);
return function() {
for (var s = Exp(), k = 0; s <= lambda; ++k) s += Exp();
return k;
};
}
Insert cell
Insert cell
pachinko(randomPoisson(Math.pow(10, lam)))
Insert cell
Insert cell
function randomPoisson(lambda) {
var Exp = d3r.randomExponential(1);
return function() {
var acc = 0, l = lambda;
while (l > 16) {
var n = Math.floor(0.875 * l),
t = randomGamma(n, 1)();
if (t > l) {
return acc + randomBinomial(n - 1, l / t)();
}
acc += n;
l -= t;
}
for (var s = Exp(), k = 0; s <= l; ++k) s += Exp();
return acc + k;
};
}
Insert cell
Insert cell
// times in milliseconds
[timefunc(randomPoissonSimple(100)), timefunc(randomPoisson(100)), timefunc(randomPoisson(1e12))]
Insert cell
function timefunc(f) {
var start = performance.now(),
A = Array.from({length: 100000}, f),
end = performance.now();
return end - start;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more