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

random-sampler

v0.1.1

Published

provide shuffle and random sampling api, weighted random sampling algorithm included

Downloads

5

Readme

random-sampler

This library provides APIs that useful for sampling a set of data, using normal or weighted possibility.

Installation

yarn add random-sampler

Explaination

算法介绍(中文)

Usage

Initialization

By default, simply new an instance will provide all API that you need. In this case, Math.random is used as default function to generate random numbers.

import Sampler from 'random-sampler';

const sampler = new Sampler();

You could also pass a random generator function when creating instance. Whenever called, it should produce uniform distribution with range [0, 1).

import Sampler from 'random-sampler';
import MersenneTwister from 'mersenne-twister';

const generator = new MersenneTwister();
function getRandom() {
  return generator.random();
}
const sampler = new Sampler(getRandom);

Shuffle Array

By default, API will use Fish-Yates shuffle algorithm to shuffle array.

import Sampler from 'random-sampler';

const sampler = new Sampler();
const array = [1, 2, 3];
sampler.shuffle(array);
console.log(array);

If you provide a function to give weight for each element in array, shuffle will be based on their weights, meaning that possibility of each element to be selected first is different. In general, if there are elements a1, a2, ..., an with weights w1, w2, ..., wn, element ai is selected as first element will have possibility wi / (w1 + w2 + ... + wn).

import Sampler from 'random-sampler';

const sampler = new Sampler();
const array = [1, 2, 3];
function getWeight(element, index) {
  return element + index;
}
sampler.shuffler(array, getWeight);
console.log(array);

Notice: shuffle API will mutate given array. This is not a immutable API.

Sample Iterable

By default, it will use Reservoir algorithm to sample data out of array or any other iterable with size unknown:

import Sampler from 'random-sampler';

const sampler = new Sampler();
const array = [1, 2, 3];
const size = 2;
const result = sampler.sample(array, size);
console.log(result);

If you provide a function to give weight for each element in array, sample will be based on their weights, meaning that possibility of each element to be selected is different (see how shuffle with weighted value works).

import Sampler from 'random-sampler';

const sampler = new Sampler();
const array = [1, 2, 3];
const size = 2;
function getWeight(element, index) {
  return element + index;
}
const result = sampler.sample(array, size, getWeight);
console.log(result);

When weights are provided, the element with larger weight will be more likely to be shown in front of sample result.

Notice: sample API will not mutate given array, but instead, it will produce a new array as result.

Asynchronous Sampling

When data cannot be provided synchronously, it's also possible to asynchronously add all elements and get the sample result whenever whished.

import Sampler from 'random-sampler';

const sampler = new Sampler();
const size = 2;
const receiver = sampler.create(size);

window.addEventListener('message', (event) => {
  const data = event.data;
  receiver.add(data);
});

// at some point:
console.log(receiver.get());

.create(number) function will return an object with two available APIs: add and get, where add allows you to add elements and get allows you to get the result based on current status.

If you provide a second parameter as a function providing weights to each element, weighted random sampling will be used. But still, the return of create(number, function) will provide two available options, i.e. add and get as described above.

import Sampler from 'random-sampler';

const sampler = new Sampler();
const size = 2;
function getWeight(element, index) { return element.length * index; }
window.addEventListener('message', (event) => {
  const data = event.data;
  receiver.add(data);
});

// at some point:
console.log(receiver.get());