- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find the index of an element in a vector in R?
There are three ways to find the index of an element in a vector.
Example
> x <- sample(1:10) > x [1] 8 10 9 6 2 1 4 7 5 3
Using which
> which(x == 6)[[1]] [1] 4
Here we found the index of 6 in vector x.
Using match
> match(c(4,8),x) [1] 7 1
Here we found the index of 4 and 8 in vector x.
Using which with %in% > which(x %in% c(2,4)) [1] 5 7
Here we found the index of 2 and 4 in vector x.
- Related Articles
- How to find the index of the minimum and maximum value of a vector in R?
- How to find the index of the last occurrence of repeated values in a vector in R?
- Replace an element at a specified index of the Vector in Java
- How to minus every element of a vector with every element of another vector in R?
- How to find the index of an element in a matrix column based on some condition in R?
- How to find the position of NA in an R vector?
- How to return the same index for consecutively duplicated values in an R vector?
- How to multiply each element of a larger vector with a smaller vector in R?
- How to find the number of distinct values in an R vector?
- How to find the number of positive values in an R vector?
- How to find the position of odd numbers in an R vector?
- How to find the range of a vector in R?
- How to convert row index number or row index name of an R data frame to a vector?
- How to multiply each element of a numerical vector in R?
- How to extract vector using different index for columns in an R matrix?

Advertisements