Learn R Programming

CoreGx (version 0.1.1)

intersectList: Utility to find the intersection between a list of more than two vectors or lists

Description

This function extends the native intersect function to work on two or more arguments.

Usage

intersectList(...)

Arguments

...

A list of or any number of vector like objects of the same mode, which could also be operated on by the native R set operations

Value

A vector like object of the same mode as the first argument, containing only the intersection common to all arguments to the function

Examples

Run this code
# NOT RUN {
list1 <- list('a', 'b', 'c')
list2 <- list('a', 'c')
list3 <- list('a', 'c', 'd')
listAll <- intersectList(list1, list2, list3)
listAll

# }

Run the code above in your browser using DataLab