pub fn peak_max_with_start_end<T>(
ca: &ChunkedArray<T>,
start: Option<<T as PolarsNumericType>::Native>,
end: Option<<T as PolarsNumericType>::Native>,
) -> ChunkedArray<BooleanType>where
T: PolarsNumericType,
ChunkedArray<T>: for<'a> ChunkCompareIneq<&'a ChunkedArray<T>, Item = ChunkedArray<BooleanType>>,
Available on crate feature
polars-ops
only.Expand description
Get a boolean mask of the local maximum peaks.