Trait polars_core::chunked_array::ops::ChunkPeaks [−][src]
pub trait ChunkPeaks { fn peak_max(&self) -> BooleanChunked { ... } fn peak_min(&self) -> BooleanChunked { ... } }
Expand description
Find local minima/ maxima
Provided methods
fn peak_max(&self) -> BooleanChunked
[src]
fn peak_max(&self) -> BooleanChunked
[src]Get a boolean mask of the local maximum peaks.
fn peak_min(&self) -> BooleanChunked
[src]
fn peak_min(&self) -> BooleanChunked
[src]Get a boolean mask of the local minimum peaks.
Implementors
impl ChunkPeaks for BooleanChunked
[src]
impl ChunkPeaks for CategoricalChunked
[src]
impl ChunkPeaks for ListChunked
[src]
impl ChunkPeaks for Utf8Chunked
[src]
impl<T> ChunkPeaks for ChunkedArray<T> where
T: PolarsNumericType,
T::Native: NumComp + Zero,
[src]
impl<T> ChunkPeaks for ChunkedArray<T> where
T: PolarsNumericType,
T::Native: NumComp + Zero,
[src]fn peak_max(&self) -> BooleanChunked
[src]
fn peak_max(&self) -> BooleanChunked
[src]Get a boolean mask of the local maximum peaks.
fn peak_min(&self) -> BooleanChunked
[src]
fn peak_min(&self) -> BooleanChunked
[src]Get a boolean mask of the local minimum peaks.
impl<T> ChunkPeaks for ObjectChunked<T> where
T: 'static + Debug + Clone + Send + Sync + Default,
[src]
T: 'static + Debug + Clone + Send + Sync + Default,