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
Get a boolean mask of the local maximum peaks.
Get a boolean mask of the local minimum peaks.
impl<T> ChunkPeaks for ObjectChunked<T> where
T: 'static + Debug + Clone + Send + Sync + Default, [src]