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 Data Cleaning component gives you quick strategies to deal with missing values across selected features.

Configuration

OptionDescription
FeaturesColumns to apply the strategy to. Select individual columns, All Numerical Features, or All Categorical Features.
StrategyHow to handle missing values (see table below).

Strategies

StrategyWhat it does
Drop RowsRemove rows that have a missing value in any selected column
Drop ColumnsRemove the selected columns entirely
Fill with MeanReplace missing values with the column mean (numerical only)
Fill with MedianReplace missing values with the column median (numerical only)
Fill with ModeReplace missing values with the most frequent value
Fill with ffill, bfillForward-fill then backward-fill missing values

Input / Output

Type
InputDataFrame
OutputDataFrame
If no features are selected or Strategy is left at “Select”, the component passes the DataFrame through unchanged.