union_all: Union All

View source: R/union_all.R

union_allR Documentation

Union All

Description

Union all elements of R objects together.

Usage

union_all(x, y, ...)

Arguments

x, y

objects to union all elements of (ignoring order)

...

other arguments passed on to methods

Examples

first <- mtcars[1:20, ]
second <- mtcars[10:32, ]
union_all(first, second)

# union_all does not remove duplicates
a <- data.frame(column = c(1:10, 10))
b <- data.frame(column = c(1:5, 5))
union_all(a, b)


poorman documentation built on Nov. 2, 2023, 5:27 p.m.