Trait polars::chunked_array::object::ChunkFillNullValue
source · [−]pub trait ChunkFillNullValue<T> {
fn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>;
}
This is supported on crate feature
object
only.Expand description
Replace None values with a value
Required methods
fn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>
fn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>
Replace None values with a give value T
.