Version: v2.5 
ImputingWithModeValue
Imputing with most frequently observed value. It fills missing values (None) in selected columns with most frequently observed value in the corresponding column, in the incoming DataFrame.
Type
transform
Fields
| Name | Title | Description |
|---|---|---|
| colNames | Columns | Columns to be processed for imputing the missing values. |
Examples
Input
| id | amount |
|---|---|
| 1 | 100 |
| 2 | 200 |
| 3 | |
| 4 | 400 |
| 5 | 400 |
| 6 | 400 |
| 7 | 600 |
| 8 | 700 |
Parameters
| Name | Value |
|---|---|
| Columns | amount |
Output
| id | amount |
|---|---|
| 1 | 100 |
| 2 | 200 |
| 3 | 400 |
| 4 | 400 |
| 5 | 400 |
| 6 | 400 |
| 7 | 600 |
| 8 | 700 |