Custom Missing Values
Customize Missing Data Values in Your Schema
# Assume an instantiated Fiddler Model:
# model = Model.from_data(...)
# Modify your ModelSchema object before calling model.create()
model.schema['my_column'].replace_with_nulls = [
'-1.0',
'-999'
]Last updated
Was this helpful?