Learn R Programming

tinyarray (version 2.4.3)

union_all: union_all

Description

calculate union set for two or more elements

Usage

union_all(...)

Value

vector

Arguments

...

some vectors or a list with some vectors

Author

Xiaojie Sun

See Also

intersect_all

Examples

Run this code
x1 = letters[1:4]
x2 = letters[3:6]
x3 = letters[3:4]
re =intersect_all(x1,x2,x3)
re2 = intersect_all(list(x1,x2,x3))
re3 = union_all(x1,x2,x3)

Run the code above in your browser using DataLab