我搜索了R函数data.sort(key = lambda item: float(item["price"]))
,adist
,agrep
和match
,但没有找到用分隔符计算编辑距离的方法。
现有编辑距离:
stringdist
所需功能将使用分隔符来表示多字符单元:
“that” & ”fat” = 2 i.e., adist("that","fat")
答案 0 :(得分:1)
Levenshtein距离很容易实现,所以只需计算它。这是Wagner-Fischer算法的快速无保证版本(参见维基百科)
vecLeven <- function(s, t) {
d <- matrix(0, nrow = length(s) + 1, ncol=length(t) + 1)
d[, 1] <- (1:nrow(d)) - 1
d[1,] <- (1:ncol(d))-1
for (i in 1:length(s)) {
for (j in 1:length(t)) {
d[i+1, j+1] <- min(
d[i, j+1] + 1, # deletion
d[i+1, j] + 1, # insertion
d[i, j] + if (s[i] == t[j]) 0 else 1 # substitution
)
}
}
d[nrow(d), ncol(d)]
}
sepLeven <- function(s, t, sep=".") {
mapply(vecLeven,
strsplit(s, sep, fixed=TRUE),
strsplit(t, sep, fixed=TRUE))
}
sepLeven(c("th.a.t", "t.e.s.t"), c("f.a.t", "f.e.t"), sep=".")
# output: [1] 1 2