[Numpy-discussion] StackOverflow Developer Survey

2022-06-23 Thread Michael Siebert
Hi all, just found some more survey data on Numpy, see (need to scroll down a little to „Other frameworks and libraries“): https://survey.stackoverflow.co/2022 Numpy seems to enjoy an exceptional position as a library over a wide spectrum of programming languages: rank 2 overall and among prof

[Numpy-discussion] MERGED: Speeding up in1d and adding a "method" or similar

2022-06-23 Thread Sebastian Berg
Hi all, just a note that I merged the PR with the following semantics: A new `kind` keyword-only argument: * `kind=None` uses a memory bound based heuristic to decide which method to use * `kind="table"` uses the new approach (integer arrays only) * `kind="sort"` forces the old behavior The ne