How to combine multiple conditions to subset a data-frame using “OR” ?

614    Asked by jackBurgess in Data Science , Asked on Jul 15, 2021

 I have a data.frame in R. I want to try two different conditions on two different columns, but I want these conditions to be inclusive. Therefore, I would like to use "OR" to combine the conditions. I have used the following syntax before with a lot of success when I wanted to use the "AND" condition.

my.data.frame <- data[(data$V1 > 2) & (data$V2 < 4>

But I don't know how to use an 'OR' in the above. 

Answered by Joan Gill

To combine r subset multiple conditions to subset a data frame using ‘OR’, use the following:

my.data.frame <- subset(data , V1 > 2 | V2 < 4>

You can also use the filter function from the dplyr package as follows:

library(dplyr) 
filter(data, V1 > 2 | V2 < 4>
<br>

Your Answer

Interviews

Parent Categories