VerticalStack / Manipulation Layer

Vertically concatenate two DataFrames with matching columns. Similar to pandas' concat(axis=0) or SQL's UNION ALL.

Example:

First DataFrame:

idnamevalue
1Alice100
2Bob200

Second DataFrame:

idnamevalue
3Carol300
4Dave400

Result:

idnamevalue
1Alice100
2Bob200
3Carol300
4Dave400

Key characteristics:

  • Requires identical column structure
  • Preserves column order
  • Maintains data types
  • Appends rows sequentially

Common applications:

  • Combining periodic data
  • Merging split datasets
  • Aggregating multiple sources
  • Batch data consolidation
  • Historical data combination
  • Sequential record assembly
  • Multi-file data integration
  • Partitioned data reunion
Table
0
Table
1
0
Table
- NO PARAMS