Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

The Concatenate component appends one DataFrame to another along a chosen axis — useful for combining datasets that share the same schema, or for adding new columns.

Configuration

OptionDescriptionDefault
AxisRows (vertical stack) — adds rows. Columns (horizontal stack) — adds columns side by side.Rows
Ignore IndexReset the row index in the resultYes
Joinouter keeps all columns (fills NaN for missing). inner keeps only shared columns.outer

Input / Output

Type
InputFirst DataFrame + Second DataFrame
OutputDataFrame

When to use

  • Vertical (rows): Combine two CSV files that have the same columns (e.g. January data + February data).
  • Horizontal (columns): Attach a new set of columns to an existing DataFrame when rows are already aligned.