gpt4 book ai didi

python - 检查同一列中是否有相似的字符串

转载 作者:行者123 更新时间:2023-12-04 16:40:51 25 4
gpt4 key购买 nike

我有一个这样的数据框,

df
col1 col2
A 'the value is zero'
B 'this is a cat'
C 'the value is one'
D 'nothing is here'
E 'the colour is blue'
F 'this is dog'
G 'empty sequence'
H 'the colour is red'
I 'the colour is green' 1

现在我想要类似的字符串标记为 1,其他标记为 0,所以最终的数据框应该是这样的,

col1             col2                 col1
A 'the value is zero' 1
B 'this is a cat' 1
C 'the value is one' 1
D 'nothing is here' 0
E 'the colour is blue' 1
F 'this is dog' 1
G 'empty sequence' 0
H 'the colour is red' 1
I 'the colour is green' 1

可以使用 SequenceMatcher(SequenceMatcher(None, s1, s2).ratio()) 函数获得 0 和 1,通过一些阈值我们可以将其设为零或一。

但如果我使用 for 循环来查找彼此之间的相似性,那么执行起来将花费更长的时间。寻找一些 pandas 快捷方式/pythonic 方式来有效地做到这一点。

最佳答案

类似于 is it possible to do fuzzy match merge with python pandas? ,我们可以使用 difflib 并通过查看 difflib.get_close_matches 返回的列表的长度来检查是否找到超过 1 个相似的字符串(以排除它自己的字符串)。 :

import difflib

df['col1'] = [(len(difflib.get_close_matches(x, df['col2'], cutoff=0.7))>1)*1
for x in df['col2']]

print(df)

col1 col2
0 1 'the value is zero'
1 1 'this is a cat'
2 1 'the value is one'
3 0 'nothing is here'
4 1 'the colour is blue'
5 1 'this is dog'
6 0 'empty sequence'
7 1 'the colour is red'
8 1 'the colour is green'

基于 fuzzy matching 的相似度矩阵

如果字符串相似,人们也可能有兴趣获得一个相似性矩阵,将旋转列中的所有值设置为 1。为此,我们可以像上面一样继续,但保留整个列表,分解它并使用 pd.crosstab 旋转生成的数据框:

df['sim'] = [difflib.get_close_matches(x, df['col2'], cutoff=0.7)  for x in df['col2']]
sim_df = df.explode('sim')
pd.crosstab(sim_df.col2, sim_df.sim)

sim empty sequence nothing is here the colour is blue... the value is zero this is a cat this is dog
col2
empty sequence 1 0 0 ... 0 0 0
nothing is here 0 1 0 ... 0 0 0
the colour is blue 0 0 1 ... 0 0 0
the colour is green 0 0 1 ... 0 0 0
the colour is red 0 0 1 ... 0 0 0
the value is one 0 0 0 ... 1 0 0
the value is zero 0 0 0 ... 1 0 0
this is a cat 0 0 0 ... 0 1 1
this is dog 0 0 0 ... 0 1 1

关于python - 检查同一列中是否有相似的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60987641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com