Enum ImputationStrategy
- Namespace
- AiDotNet.Preprocessing.Imputers
- Assembly
- AiDotNet.dll
Specifies the strategy for imputing missing values.
public enum ImputationStrategy
Fields
Constant = 3Replace missing values with a constant value.
Mean = 0Replace missing values with the mean of each feature.
Median = 1Replace missing values with the median of each feature.
MostFrequent = 2Replace missing values with the most frequent value of each feature.