の値マッチング関数はR
非常に便利です。しかし、私の理解では、2次元または高次元の入力を十分にサポートしていません。
たとえば、とが同じ列数の行列であると仮定x
し、の行をの行y
に一致させたいとします。'R'関数呼び出しはそうしません。リストの入力にも同じ不十分さが発生します。 x
y
match(x,y)
私はそれの独自のバージョンmatchMat(xMat, yMat)
(以下に添付)を実装しましたが、このタスクの解決策は何ですか?
matchMat = function(xMat, uMat, dimn=1) {
ind = rep(-1, dim(xMat)[dimn])
id = 1 : dim(uMat)[dimn]
for (i in id) {
e = utilSubMat(i, uMat, dimn)
isMatch = matchVect(e, xMat, dimn)
ind[isMatch] = i
}
return(ind)
}
matchVect = function(v, xMat, dimn) {
apply(xMat, dimn, function(e) {
tf = e == v
all(tf)
})
}
unittest_matchMat = function() {
dimn = 1
uMat = matrix(c(1, 2, 2, 3, 3, 4, 4, 5), ncol=2, byrow=T)
ind = sample(dim(uMat)[1], 10, replace=T)
print(ind)
xMat = uMat[ind, ]
rst = matchMat(xMat, uMat, dimn)
print(rst)
stopifnot(all(ind == rst))
xMat2 = rbind(c(999, 999), xMat, c(888, 888))
rst2 = matchMat(xMat2, uMat, dimn)
print(rst2)
stopifnot(all(c(-1, ind, -1) == rst2))
print('pass!')
}