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.
> which(LETTERS %in% c("R","A")) [1] 1 18
18 1答え、つまり初期ベクトルに現れる順序のインデックスを取得するにはどうすればよいですか?
18 1
match(c("R","A"),LETTERS) [1] 18 1