union_all {poorman}R 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)


[Package poorman version 0.2.7 Index]