Skip to contents

This is an alias for union.

Usage

unionAll(x, y)

# S4 method for SparkDataFrame,SparkDataFrame
unionAll(x, y)

Arguments

x

a SparkDataFrame.

y

a SparkDataFrame.

Value

A SparkDataFrame containing the result of the unionAll operation.

Note

unionAll since 1.4.0

Examples

if (FALSE) {
sparkR.session()
df1 <- read.json(path)
df2 <- read.json(path2)
unionAllDF <- unionAll(df1, df2)
}