MissingValueReplacingEstimator.ReplacementMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The possible ways to replace missing values.
public enum MissingValueReplacingEstimator.ReplacementMode
type MissingValueReplacingEstimator.ReplacementMode =
Public Enum MissingValueReplacingEstimator.ReplacementMode
- Inheritance
-
MissingValueReplacingEstimator.ReplacementMode
Fields
Name | Value | Description |
---|---|---|
DefaultValue | 0 | Replace with the default value of the column based on its type. |
Mean | 1 | Replace with the mean value of the column. |
Minimum | 2 | Replace with the minimum value of the column. |
Maximum | 3 | Replace with the maximum value of the column. |
Mode | 5 | Replace with the most frequent value of the column. |