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 Merge / Join component combines two DataFrames side-by-side by matching rows on one or more key columns — equivalent to a SQL JOIN.

Configuration

OptionDescriptionDefault
HowJoin type: inner, left, right, outerinner
Left OnKey column(s) from the left DataFrame
Right OnKey column(s) from the right DataFrame
SuffixesSuffix added to overlapping column names (e.g. _x,_y)_x,_y

Join types

TypeResult
innerOnly rows with matching keys in both DataFrames
leftAll rows from the left DataFrame; NaN for unmatched right rows
rightAll rows from the right DataFrame; NaN for unmatched left rows
outerAll rows from both DataFrames; NaN where no match

Input / Output

Type
InputLeft DataFrame + Right DataFrame
OutputDataFrame
Connect two separate data source components (CSV Reader, Excel Reader) to the left and right input handles of Merge / Join.