Jaro-Winkler distance: Difference between revisions

m
typo
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
m (typo)
 
(One intermediate revision by one other user not shown)
Line 2:
 
The Jaro-Winkler distance is a metric for measuring the edit distance between words.
It is similar to the more basic LevensteinLevenshtein distance but the Jaro distance also accounts
for transpositions between letters in the words. With the Winkler modification to the Jaro
metric, the Jaro-Winkler distance also adds an increase in similarity for words which
Line 2,883:
{{libheader|Wren-sort}}
This uses unixdict and borrows code from the [[Jaro_distance#Wren]] task.
<syntaxhighlight lang="ecmascriptwren">import "io" for File
import "./fmt" for Fmt
import "./sort" for Sort
 
var jaroSim = Fn.new { |s1, s2|
6,951

edits