Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dice-coefficient

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dice-coefficient

Sørensen–Dice coefficient

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6K
increased by75.36%
Maintainers
1
Weekly downloads
 
Created
Source

dice-coefficient Build Status Coverage Status

Sørensen–Dice coefficient. Real fast. No cruft.

Installation

npm:

$ npm install dice-coefficient

Component:

$ component install wooorm/dice-coefficient

Bower:

$ bower install dice-coefficient

Usage

var diceCoefficient = require('dice-coefficient');

diceCoefficient("abc", "abc"); // 1
diceCoefficient("abc", "xyz"); // 0
diceCoefficient("night", "nacht"); // 0.25

/* Case insensitive */
diceCoefficient("night", "nacht") === diceCoefficient("NiGhT", "NACHT"); // true

CLI

Install:

$ npm install --global dice-coefficient

Usage:

Usage: dice-coefficient [options] <word> <word>

Sørensen–Dice coefficient

Options:

  -h, --help           output usage information
  -v, --version        output version number

Usage:

# output edit distance
$ dice-coefficient night nacht
# 0.25

# output edit distance from stdin
$ echo "saturday sunday" | dice-coefficient
# 0.3333333333333333

Benchmark

On a MacBook Air, it runs about 781,000 op/s, which is more than 7.5 times faster than natural.

           dice-coefficient
  781 op/s » op/s * 1,000

           natural
  102 op/s » op/s * 1,000

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 21 Dec 2014

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc