Files
2026-02-08 11:20:43 -10:00

24 lines
422 B
Markdown
Vendored

[//]: # (title: concat)
<!---IMPORT org.jetbrains.kotlinx.dataframe.samples.api.Modify-->
Returns [`DataFrame`](DataFrame.md) with the union of rows from several given [`DataFrame`](DataFrame.md) objects.
<!---FUN concatDataFrames-->
```kotlin
df.concat(df1, df2)
```
<!---END-->
<!---FUN concatIterable-->
```kotlin
listOf(df1, df2).concat()
```
<!---END-->
See [all use cases of 'concat' operation](concat.md).