Socket
Socket
Sign inDemoInstall

@keystonehq/alias-sampling

Package Overview
Dependencies
0
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @keystonehq/alias-sampling

A Node.js module for efficient sampling from a discrete probability distribution using the alias method.


Version published
Weekly downloads
12K
increased by6.41%
Maintainers
5
Install size
10.1 kB
Created
Weekly downloads
 

Readme

Source

Alias Method for Sampling

A JavaScript library for efficient sampling of random values from a discrete probability distribution using the Walker-Vose alias method, provided by KeystoneHQ.

Installation

Install the library using yarn:

yarn add @keystonehq/alias-sampling

Or npm:

npm install @keystonehq/alias-sampling

Usage

To use the library, first import the sample function and then create a sampler with a given probability distribution and optionally an array of outcomes. You can then generate random samples using the .next() method.

Basic Usage

import sample from '@keystonehq/alias-sampling';

// Create a sampler with specified probabilities and outcomes
var s = sample([0.5, 0.25, 0.25], ['A', 'B', 'C']);

// Generate a single random outcome
console.log(s.next()); // => 'A', 'B', or 'C' according to specified probabilities

Generating Multiple Samples

import sample from '@keystonehq/alias-sampling';

// Create a sampler with specified probabilities
var s = sample([0.5, 0.25, 0.25], [10, 20, 30]);

// Generate multiple random samples
console.log(s.next(1000)); // => an array of 1000 random samples

Sampling Indices

import sample from '@keystonehq/alias-sampling';

// Create a sampler without specifying outcomes (defaults to indices)
var s = sample([0.5, 0.25, 0.25]);

// Generate a single random index
console.log(s.next()); // => 0, 1, or 2 with the specified probabilities

Using a Custom Random Generator

import sample from '@keystonehq/alias-sampling';

// Custom random generator function
var rand = Math.random;

// Create a sampler with specified probabilities and custom random generator
var s = sample([0.5, 0.25, 0.25], null, rand);

// Generate a random index using the custom random generator
console.log(s.next()); // => 0, 1, or 2 with the specified probabilities

Keywords

FAQs

Last updated on 03 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc