Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lists similarity

Tags:

function

if i have to list of concepts and i want to find the similarity between these list how can i find how much two list similar? as an example if i have two list that describe book attribute list1(author, brand , isbn, category, amount) list2(author , price , brand)

like image 731
aman Avatar asked May 19 '26 08:05

aman


1 Answers

The easiest way is probably to calculate the edit distance between each of the elements of the list.

like image 73
Ignacio Vazquez-Abrams Avatar answered May 22 '26 07:05

Ignacio Vazquez-Abrams