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

pick-weight

v1.0.0

Published

Returns a single item from an array with relative weighting of odds.

Downloads

122

Readme

pick-weight

Returns a single item from an array with relative weighting of odds.

MIT License

build:? coverage:?

Install

$ npm install --save pick-weight 

Usage

var weighted = require('pick-weight');
  
// API
// - weighted(arr, weights);

The following code will generate 'a' 100 times more often than 'b' but still choose one or the other randomly.

weighted(['a', 'b'], [100, 1]);
// => 'a'

The weights are all relative, so if you have more than just two it will ensure that all items are generated relative to all of the weights.

weighted(['a', 'b', 'c', 'd'], [1, 2, 3, 4]);
// => 'c'

Will generate a letter from the array but will pick 'b' twice as often as it picks 'a' and will pick 'c' three times as often as it picks 'a' and will pick 'd' four times as often as it will pick 'a' and will pick 'd' two times as often as it will pick 'b'.

The weights can be whole numbers as shown above or fractions.

weighted(['a', 'b', 'c', 'd'], [0.1, 0.2, 0.3, 0.4]);
// => 'd'

There is no requirement that the weights sum to anything in particular, they are all compared relative to each other so all of the following are equivalent:

weighted(['a', 'b', 'c', 'd'], [1, 2, 3, 4]);
weighted(['a', 'b', 'c', 'd'], [0.1, 0.2, 0.3, 0.4]);
weighted(['a', 'b', 'c', 'd'], [100, 200, 300, 400]);
weighted(['a', 'b', 'c', 'd'], [17, 34, 51, 68]);
weighted(['a', 'b', 'c', 'd'], [0.17, 0.34, 0.51, 0.68]);

Related

  • pick-item - Given an array, pick a random element and return it.
  • pick-items - Given an array, pick some random elements and return them in a new array.
  • pick-prop - Given an object, pick a random property and return it.
  • pick-props - Given an object, pick some random properties and return them in an array.
  • pick-key - Given an object, pick a random key and return it.
  • pick-keys - Given an object, pick some random keys and return them in an array.
  • pick-pair - Given an object, pick a random key-value and return it in a new object.
  • pick-pairs - Given an object, pick some random key-values and return it in a new object.

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.