0

In R we use rbind() to bind two data frames eg.) rbind(X , Y) How can we do the same in SparkR in spark 1.4

TIA, Arun

Arun Gunalan
  • 814
  • 7
  • 26

1 Answers1

2
unionAll(X,Y)

Check out the API docs at: https://spark.apache.org/docs/latest/api/R/index.html

khol
  • 276
  • 3
  • 9