featurebyte.StringValueImputation¶
class StringValueImputation( 
*, 
type: Literal["is_string"]="is_string", 
imputed_value: Union[bool, int, float, str, NoneType]=None
)Description¶
StringValueImputation class is used to declare the operation to impute the value when the value in the column is of astring type.
If the imputed_value parameter is None, the values to impute are replaced by missing values and the corresponding rows are ignored during aggregation operations.
Parameters¶
- type: Literal["is_string"]
 default: "is_string"
- imputed_value: Union[bool, int, float, str, NoneType]
 The value that will be used to replace any string values.