CorrelationFilter
Note
This page is a reference documentation. It only explains the class signature, and not how to use it. Please refer to the Habitat Guide and Python API guide (v2.0) for usage.
- class CorrelationFilter(corr_threshold: float = 0.95, corr_method: str = 'spearman')[source]
Bases:
objectGreedily drop redundant, highly correlated feature columns.
Radiomics feature families are strongly collinear; keeping one representative per correlated group cuts dimensionality without losing discriminative content. The left-to-right walk makes the surviving subset deterministic.
- Parameters:
corr_threshold – Absolute-correlation cut-off above which later columns are dropped.
corr_method –
pearson,spearmanorkendall.