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 Delete Columns / Rows component gives you precise control over which parts of your dataset to discard.

Configuration

OptionDescription
OperationWhat to remove (see table below).
ColumnsColumns relevant to the operation (not required for all operations).
ConditionA pandas query expression used by Drop Rows by Condition.
Index Start / EndRow index range used by Drop Rows by Index Range.

Operations

OperationWhat it does
Drop ColumnsRemove the selected columns from the DataFrame
Drop Rows by ConditionRemove rows matching a pandas query expression (e.g. age > 100)
Drop Duplicate RowsRemove duplicate rows, optionally scoped to selected columns
Drop Rows by Index RangeRemove rows between a start and end index

Input / Output

Type
InputDataFrame
OutputDataFrame

Example condition syntax

age > 100
salary < 0
city == "Unknown"
age > 60 and salary < 10000