I tried the following to row bind two Spark dataframes but I gave an error message
library(sparklyr)
library(dplyr)
sc <- spark_connect(master = "local")
iris_tbl <- copy_to(sc, iris)
iris_tbl1 <- copy_to(sc, iris, "iris1")
iris_tbl2 = bind_rows(iris_tbl, iris_tbl1)
What's the most efficient way to bind two Spark dataframes together?