Trait polars_core::chunked_array::ops::ChunkZip [−][src]
pub trait ChunkZip<T> { fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<T>
) -> Result<ChunkedArray<T>>; }
Expand description
Combine 2 ChunkedArrays based on some predicate.
Required methods
fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<T>
) -> Result<ChunkedArray<T>>
[src]
fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<T>
) -> Result<ChunkedArray<T>>
[src]Create a new ChunkedArray with values from self where the mask evaluates true
and values
from other
where the mask evaluates false
Implementors
fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<CategoricalType>
) -> Result<ChunkedArray<CategoricalType>>
[src]fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<ListType>
) -> Result<ChunkedArray<ListType>>
[src]fn zip_with(
&self,
mask: &BooleanChunked,
other: &ChunkedArray<ObjectType<T>>
) -> Result<ChunkedArray<ObjectType<T>>>
[src]