Skip to main content
Version: v1.13 print this page

ImputingWithConstant

It imputes missing value with constant value. It fills missing values (None) in selected columns with given constant value for the corresponding column, in the incoming DataFrame.

Type

transform

Fields

NameTitleDescription
colNamesColumnsColumns to be processed for missing values
constantsConstantsMissing value will be replaced with constant

Examples

Input

nameageheight
Alice580
Alice580
Alice80
James550
James60
James80

Parameters1 ----------

ColumnsConstants
name
age20
height

Output1

nameageheight
Alice580
Alice580
Alice2080
James550
James2060
James2080