[//]: # (title: concat) Returns [`DataFrame`](DataFrame.md) with the union of rows from several given [`DataFrame`](DataFrame.md) objects. ```kotlin df.concat(df1, df2) ``` ```kotlin listOf(df1, df2).concat() ``` See [all use cases of 'concat' operation](concat.md).