bach.Series.fillna

fillna

(other)

[source]

Fill any NULL value with the given constant or other compatible Series

In case a Series is given, the value from the same row is used to fill.

Parameters

other (Union[int, numpy.int64, float, numpy.float64, bool, str, None, datetime.date, datetime.time, datetime.datetime, numpy.datetime64, datetime.timedelta, numpy.timedelta64, uuid.UUID, pandas._libs.interval.Interval, dict, list]) – The value to replace the NULL values with. Should be a supported type by the series, or a TypeError is raised. Can also be another Series

note

Pandas replaces numpy.nan values, we can only replace NULL.

note

You can replace None with None, have fun, forever!