You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's up awesome ndarray community! I searched through old issues and found the related issues below.
There were couple of discussions and PRs, but currently, it seems like ndarray and ndarray-stats lack several key sorting and searching operations that are available in NumPy.
Start with partitioning: API is gonna be like..
impl<A,D>ArrayBase<S,D>whereA:Ord,D:Dimension,{/// Partially sorts the array around the k-th element./// /// Similar to NumPy's `partition`. Returns a new array where:/// - All elements smaller than the k-th element are to its left/// - All elements equal or greater than the k-th element are to its right/// - The ordering within each partition is undefinedpubfnpartition(&self,kth:usize) -> Array<A,D>{ ...}/// Returns the indices that would partition the array./// /// Similar to NumPy's `argpartition`. Returns indices that would partition/// the array around the k-th element.pubfnargpartition(&self,kth:usize) -> Array<usize,D>{ ...}}
Note
I searched the codebase thoroughly and started implementing this feature, but there might already be an existing implementation that I missed. If that's the case, please let me know!
add numpy.partition like functionality
Overview
What's up awesome ndarray community! I searched through old issues and found the related issues below.
There were couple of discussions and PRs, but currently, it seems like ndarray and ndarray-stats lack several key sorting and searching operations that are available in NumPy.
Start with partitioning: API is gonna be like..
Note
Related Issues
References
The text was updated successfully, but these errors were encountered: