To combine multiple conditions to subset a data frame using ‘OR’, use the following:
my.data23.frame <- subset(data , V1 > 2 | V2 < 4)
In answerQA you can ask and answer questions and share your experience with others!
To combine multiple conditions to subset a data frame using ‘OR’, use the following:
my.data23.frame <- subset(data , V1 > 2 | V2 < 4)