Series.fillNa
Replace all NaN value with specified value
danfo.Series.fillNa(options)
Parameters | Type | Description | Default |
---|---|---|---|
value | Any | The value to replace all missing value with. | |
options | Object | inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false | { inplace: false } |
Examples
Fill nan value and then return new series
Fill nan value inplace
Last updated