Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add numpy.partition like functionality #1497

Open
NewBornRustacean opened this issue Mar 27, 2025 · 0 comments
Open

add numpy.partition like functionality #1497

NewBornRustacean opened this issue Mar 27, 2025 · 0 comments

Comments

@NewBornRustacean
Copy link
Contributor

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..

impl<A, D> ArrayBase<S, D>
where
    A: 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 undefined
    pub fn partition(&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.
    pub fn argpartition(&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!
  • will open draft PR soon!

Related Issues

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant