Search notes:

R function: union

union() is one of the set operations.
set_1 = c('three', 'two', 'four', 'three', 'six');
set_2 = c('two', 'one', 'four', 'five', 'one', 'six');

union (set_1, set_2)
#
# "three" "two"   "four"  "six"   "one"   "five"
Github repository about-r, path: /functions/union.R

See also

Set operations
Index to (some) R functions

Index