Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字ベクトルがある場合a、
a
a <- c("bob","jim","joe","fred")
bそして、同じ要素を持つが順序が異なる別の文字ベクトルがあります。
b
b <- c("joe", "jim", "fred", "bob")
aの各要素のどの要素が等しいかを示す関数はありbますか? つまり、c(3,2,4,1)(bは と同等であるため c(a[3], a[2], a[4], a[1]). Thanks!
c(3,2,4,1)
c(a[3], a[2], a[4], a[1])
を探していmatch(b, a)ます。
match(b, a)