New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

string-comparison

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string-comparison - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

LICENCE

2

package.json
{
"name": "string-comparison",
"version": "1.0.4",
"version": "1.0.5",
"description": "A library implementing different string similarity",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -0,1 +1,2 @@

# string-comparison

@@ -5,4 +6,6 @@

A library implementing different string similarity, distance and sortMatch measures. A dozen of algorithms (including Levenshtein edit distance and sibblings, Jaro-Winkler, Longest Common Subsequence, cosine similarity etc.) are currently implemented. Check the summary table below for the complete list...
A library implementing different string similarity, distance and sortMatch measures. A dozen of algorithms (including Levenshtein edit distance and sibblings, Longest Common Subsequence, cosine similarity etc.) are currently implemented. Check the summary table below for the complete list...
[TOC]
## Download & Usage

@@ -45,4 +48,113 @@

## Normalized, metric, similarity and distance
Although the topic might seem simple, a lot of different algorithms exist to measure text similarity or distance. Therefore the library defines some interfaces to categorize them.
### (Normalized) similarity and distance
- StringSimilarity : Implementing algorithms define a similarity between strings (0 means strings are completely different).
- NormalizedStringSimilarity : Implementing algorithms define a similarity between 0.0 and 1.0, like Jaro-Winkler for example.
- StringDistance : Implementing algorithms define a distance between strings (0 means strings are identical), like Levenshtein for example. The maximum distance value depends on the algorithm.
- NormalizedStringDistance : This interface extends StringDistance. For implementing classes, the computed distance value is between 0.0 and 1.0. NormalizedLevenshtein is an example of NormalizedStringDistance.
## Levenshtein
The Levenshtein distance between two words is the minimum number of single-character edits (insertions, deletions or substitutions) required to change one word into the other.
It is a metric string distance. This implementation uses dynamic programming (Wagner–Fischer algorithm), with only 2 rows of data. The space requirement is thus O(m) and the algorithm runs in O(m.n).
```js
const Thanos = 'healed'
const Rival = 'sealed'
const Avengers = ['edward', 'sealed', 'theatre']
let ls = Similarity.levenshtein
console.log(ls.similarity(Thanos, Rival))
console.log(ls.distance(Thanos, Rival))
console.log(ls.sortMatch(Thanos, Avengers))
// output
0.8333333333333334
1
[
{ member: 'edward', index: 0, rating: 0.16666666666666663 },
{ member: 'theatre', index: 2, rating: 0.4285714285714286 },
{ member: 'sealed', index: 1, rating: 0.8333333333333334 }
]
```
## Longest Common Subsequence
The longest common subsequence (LCS) problem consists in finding the longest subsequence common to two (or more) sequences. It differs from problems of finding common substrings: unlike substrings, subsequences are not required to occupy consecutive positions within the original sequences.
It is used by the diff utility, by Git for reconciling multiple changes, etc.
The LCS distance between strings X (of length n) and Y (of length m) is n + m - 2 |LCS(X, Y)|
min = 0
max = n + m
LCS distance is equivalent to Levenshtein distance when only insertion and deletion is allowed (no substitution), or when the cost of the substitution is the double of the cost of an insertion or deletion.
This class implements the dynamic programming approach, which has a space requirement O(m.n), and computation cost O(m.n).
In "Length of Maximal Common Subsequences", K.S. Larsen proposed an algorithm that computes the length of LCS in time O(log(m).log(n)). But the algorithm has a memory requirement O(m.n²) and was thus not implemented here.
```js
const Thanos = 'healed'
const Rival = 'sealed'
const Avengers = ['edward', 'sealed', 'theatre']
let lcs = Similarity.lcs
console.log(lcs.similarity(Thanos, Rival))
console.log(lcs.distance(Thanos, Rival))
console.log(lcs.sortMatch(Thanos, Avengers))
// output
0.8333333333333334
2
[
{ member: 'edward', index: 0, rating: 0.5 },
{ member: 'theatre', index: 2, rating: 0.6153846153846154 },
{ member: 'sealed', index: 1, rating: 0.8333333333333334 }
]
```
## Metric Longest Common Subsequence
Distance metric based on Longest Common Subsequence, from the notes "An LCS-based string metric" by Daniel Bakkelund.
http://heim.ifi.uio.no/~danielry/StringMetric.pdf
The distance is computed as 1 - |LCS(s1, s2)| / max(|s1|, |s2|)
```js
const Thanos = 'healed'
const Rival = 'sealed'
const Avengers = ['edward', 'sealed', 'theatre']
let mlcs = Similarity.mlcs
console.log(mlcs.similarity(Thanos, Rival))
console.log(mlcs.distance(Thanos, Rival))
console.log(mlcs.sortMatch(Thanos, Avengers))
// output
0.8333333333333334
0.16666666666666663
[
{ member: 'edward', index: 0, rating: 0.5 },
{ member: 'theatre', index: 2, rating: 0.5714285714285714 },
{ member: 'sealed', index: 1, rating: 0.8333333333333334 }
]
```
## Cosine similarity
Like Q-Gram distance, the input strings are first converted into sets of n-grams (sequences of n characters, also called k-shingles), but this time the cardinality of each n-gram is not taken into account. Each input string is simply a set of n-grams. The Jaccard index is then computed as |V1 inter V2| / |V1 union V2|.
Distance is computed as 1 - similarity.
Jaccard index is a metric distance.
## Sorensen-Dice coefficient
Similar to Jaccard index, but this time the similarity is computed as 2 * |V1 inter V2| / (|V1| + |V2|).
Distance is computed as 1 - similarity.
## API

@@ -102,3 +214,3 @@ * `similarity`.

### 1.0 version
### 1.x version
* Basic building

@@ -111,8 +223,8 @@ * Cosine

* MetricLCS
* Add function sortMatch()
### 2.0 version
* none
## MIT
[MIT](#)
[MIT](./LICENCE)
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