jaccard相似度 java,使用jaccard相似度的Python Pandas距离矩阵

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

import pandas as pd

entries = [

{'id':'1', 'category1':'100', 'category2': '0', 'category3':'100'},

{'id':'2', 'category1':'100', 'category2': '0', 'category3':'100'},

{'id':'3', 'category1':'0', 'category2': '100', 'category3':'100'},

{'id':'4', 'category1':'100', 'category2': '100', 'category3':'100'},

{'id':'5', 'category1':'100', 'category2': '0', 'category3':'100'}

]

df = pd.DataFrame(entries)

and the distance matrix with scipy

from scipy.spatial.distance import squareform

from scipy.spatial.distance import pdist, jaccard

res = pdist(df[['category1','category2','category3']], 'jaccard')

squareform(res)

distance = pd.DataFrame(squareform(res), index=df.index, columns= df.index)

The problem is that my result looks like this which seems to be false:

wPsJW.png

What am i missing? The similarity of 0 and 1 have to be maximum for example and the other values seem wrong too

解决方案

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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值