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