Python Pandas Distance matrix using jaccard similarity

前端 未结 1 1540
时光取名叫无心
时光取名叫无心 2020-12-30 11:26

I have implemented a function to construct a distance matrix using the jaccard similarity:

import pandas as pd
entries = [
    {\'id\':\'1\', \'category1\':\         


        
相关标签:
1条回答
  • 2020-12-30 12:07

    Looking at the docs, the implementation of jaccard in scipy.spatial.distance is jaccard dissimilarity, not similarity. This is the usual way in which distance is computed when using jaccard as a metric. The reason for this is because in order to be a metric, the distance between the identical points must be zero.

    In your code, the dissimilarity between 0 and 1 should be minimized, which it is. The other values look correct in the context of dissimilarity as well.

    If you want similarity instead of dissimilarity, just subtract the dissimilarity from 1.

    res = 1 - pdist(df[['category1','category2','category3']], 'jaccard')
    
    0 讨论(0)
提交回复
热议问题