Fuzzywuzzy 没有属性 'extractone'
Fuzzywuzzy has no attribute 'extractone'
我有一个数据框:
alertname custname
0 wlison wilson
1 dais said
2 4dams adams
3 ad4ms adams
4 ad48s adams
5 smyth smith
6 smythe smith
7 gillan gillan
8 gilen gillan
9 scott-smith scottsmith
10 scott smith scottsmith
11 perrson person
12 persson person
现在,当我 运行 来自 fuzzywuzzy
包的以下命令时:
from fuzzywuzzy import process
from fuzzywuzzy import fuzz
import Levenshtein
key=['wilson']
process.extractone(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)
它给我以下错误:
AttributeError: 'module' object has no attribute 'extractone'
是
process.extractOne(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)
你错过了大写 O
我有一个数据框:
alertname custname
0 wlison wilson
1 dais said
2 4dams adams
3 ad4ms adams
4 ad48s adams
5 smyth smith
6 smythe smith
7 gillan gillan
8 gilen gillan
9 scott-smith scottsmith
10 scott smith scottsmith
11 perrson person
12 persson person
现在,当我 运行 来自 fuzzywuzzy
包的以下命令时:
from fuzzywuzzy import process
from fuzzywuzzy import fuzz
import Levenshtein
key=['wilson']
process.extractone(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)
它给我以下错误:
AttributeError: 'module' object has no attribute 'extractone'
是
process.extractOne(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)
你错过了大写 O