Find Odd & Even Numbers in R (2 Examples)

In this R programming tutorial you’ll learn how to subset odd and even numbers.

Creation of Example Data

vec <- c(1, 4, 7, 4, 5, 8)        # Create example vector
vec
# [1] 1 4 7 4 5 8

Example 1: Extract Odd Numbers from Vector Object

vec[vec %% 2 != 0]                # Subset odd values
# [1] 1 7 5

Example 2: Extract Even Numbers from Vector Object

vec[vec %% 2 == 0]                # Subset even values
# [1] 4 4 8

Further Resources & Related Tutorials

Furthermore, you may have a look at the related articles that I have published on this website. Some articles about similar topics such as numeric values, extracting data, and dates are listed below.

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Menu
Top