用法:
StringMethods.edit_distance(targets) → SeriesOrIndex
targets
字符串是使用 Levenshtein 編輯距離算法針對此實例中的字符串進行測量的。 https://www.cuelogic.com/blog/the-levenshtein-algorithmtargets
參數也可以是單個字符串,在這種情況下,針對該單個字符串計算所有字符串的編輯距離。- targets:array-like,序列或序列或字符串
要針對每個字符串測量的字符串。
- int32 的係列或索引。
參數:
返回:
例子:
>>> import cudf >>> sr = cudf.Series(["puppy", "doggy", "kitty"]) >>> targets = cudf.Series(["pup", "dogie", "kitten"]) >>> sr.str.edit_distance(targets=targets) 0 2 1 2 2 2 dtype: int32 >>> sr.str.edit_distance("puppy") 0 0 1 4 2 4 dtype: int32
相關用法
- Python cudf.core.column.string.StringMethods.edit_distance_matrix用法及代碼示例
- Python cudf.core.column.string.StringMethods.endswith用法及代碼示例
- Python cudf.core.column.string.StringMethods.extract用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.core.column.string.StringMethods.title用法及代碼示例
- Python cudf.core.column.string.StringMethods.contains用法及代碼示例
- Python cudf.core.column.string.StringMethods.rsplit用法及代碼示例
- Python cudf.core.column.string.StringMethods.zfill用法及代碼示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代碼示例
- Python cudf.core.column.string.StringMethods.htoi用法及代碼示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代碼示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代碼示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代碼示例
- Python cudf.core.column.string.StringMethods.split用法及代碼示例
- Python cudf.core.column.string.StringMethods.ngrams用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代碼示例
- Python cudf.core.column.string.StringMethods.insert用法及代碼示例
- Python cudf.core.column.string.StringMethods.pad用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace用法及代碼示例
- Python cudf.core.column.string.StringMethods.rstrip用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.edit_distance。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。