pub trait ChunkPeaks {
    // Provided methods
    fn peak_max(&self) -> BooleanChunked { ... }
    fn peak_min(&self) -> BooleanChunked { ... }
}
Expand description

Find local minima/ maxima

Provided Methods§

source

fn peak_max(&self) -> BooleanChunked

Get a boolean mask of the local maximum peaks.

source

fn peak_min(&self) -> BooleanChunked

Get a boolean mask of the local minimum peaks.

Implementors§