Skip to main content
info
This documentation is for version v2.4 of the product.
For the latest version(v2.7) documentation click here
Version: v2.4 print this page

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

NameTitleDescription
colNamesColumnsColumns to be processed for imputing the missing values.

Examples

Input

idamount
1100
2200
3
4400
5400
6400
7600
8700

Parameters

NameValue
Columnsamount

Output

idamount
1100
2200
3400
4400
5400
6400
7600
8700