An algorithm for measuring the similarity of two strings, often used for duplicate detection.
Questions tagged [jaro-winkler]
78 questions
-1
votes
0 answers
Customize Jaro-Winkler algorithm to be insensitive of characters order in Strings
I am having a problem implementing searching in my app, I am using Jaro-Winkler algorithm to compare between the searching text and all the Strings in a list through this dart file:
import 'dart:math';
double jaroWinklerSimilarity(String s1, String…

Omar Yacop
- 37
- 1
- 9
-2
votes
1 answer
Compare two Column and apply Jaro distance
I have a dataframe, I need to apply Jaro winkler distance, example - jaro.jaro_winkler_metric(u'SHACKLEFORD', u'SHACKELFORD')
dataframe -
col1
col2
value1
value2
value3
value4
so basically I have two columns 'col1' & 'col2', I need to…

KReEd
- 358
- 4
- 18
-4
votes
2 answers
Winkler's table in Java
I'm making a chat-bot, which will answer you by nearest value in dataset (treemaps). System is analog of AIML.
I need to make Winkler-table, which will give me array of result numbers. How to do that?
There is an image, which show how this table…

nesclass
- 27
- 4