Vectors are a commonly used data structure in R. They are used to store sequential (and one-dimensional) values of the same type. In this tutorial, we will look at how to check if an element is present in an R vector with the help of some examples.
How to check if a vector contains an element in R?
You can use the %in%
operator in R to check if an element is present in a vector or not. The following is the syntax –
# check if element e is present in vector vec e %in% vec
It returns TRUE
if the value is present in the vector and FALSE
if it’s not.
Examples
Let’s look at some examples of using the above syntax to check if a vector contains a given element or not. First, we will create a vector that we will be using throughout this tutorial.
# create a vector vec <- c(2, 4, 6, 8, 10) # display the vector print(vec)
Output:
[1] 2 4 6 8 10
We have a vector of even numbers from 2 to 10.
Using %in%
to check if an element is present in a vector
Let’s check if the element 4
is present in the above vector.
# check if 4 is present in vec 4 %in% vec
Output:
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
TRUE
We get TRUE
as the output since the element 4
is present in the vector, vec
.
Let’s look at another example, this time we’ll check with a value that is not present in the above vector. For example, 5.
# check if 5 is present in vec 5 %in% vec
Output:
FALSE
We get FALSE
as the output as the element 5
is not present in the above vector.
Using is.element()
to check if an element is present in a vector
Alternatively, you can also use the is.element()
function in R to check if an element is present in a vector or not. For this, pass the element as the first argument and the vector as the second argument.
Let’s use the same example as above. We’ll check whether the element 4
is present in the vector vec
or not.
# check if 4 is present in vec is.element(4, vec)
Output:
TRUE
We get the same result as above.
You might also be interested in –
- Create a Vector in R – With Examples
- R – Get Element by Index in a Vector
- How to Print a Vector in R?
- R – Get the Length of a Vector
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.