Merge and intersect sorted numpy arrays.
Project description
Sortednp
Numpy and Numpy arrays are a really great tool. However, intersecting and merging multiple sorted numpy arrays is rather less performant. The current numpy implementation concatenates the two arrays and sorts the combination. If you want to merge or intersect multiple numpy arrays, there is a much faster way, by using the property, that the resulting array is sorted.
Sortednp (sorted numpy) operates on sorted numpy arrays to calculate the intersection or the union of two numpy arrays in an efficient way. The resulting array is again a sorted numpy array, which can be merged or intersected with the next array. The intended use case is that sorted numpy arrays are sorted as the basic data structure and merged or intersected at request. Typical applications include information retrieval and search engines in particular.
It is also possible to implement a k-way merging or intersecting algorithm,
which operates on an arbitrary number of arrays at the same time. This package
is intended to deal with arrays with $10^6
$ or $10^{10}
$ items. Usually, these
arrays are too large to keep more than two of them in memory at the same
time. This package implements methods to merge and intersect multiple arrays,
which can be loaded on-demand.
Installation
There are two different methods to install sortednp
.
Using pip
(recommended)
You can install the package directly from PyPI using pip
(here pip3
). There are
pre-compiled wheels for linux
32- and 64bit.
$ pip3 install sortednp
Using setuptools
Alternatively, you can clone the git repository and run the setup script.
$ git clone https://gitlab.sauerburger.com/frank/sortednp.git
$ cd sortednp
$ python3 setup.py install
Numpy Dependency
The installation fails in some cases, because of a build-time dependency on
numpy. Usually, the problem can be solved by manually installing a recent numpy
version via pip3 install -U numpy
.
Usage
The package provides two different kinds of methods. The first class is intended to operate on two arrays. The second class operates on two or more arrays and calls the first class of methods internally.
Two-way methods
Two numpy sorted arrays can be merged with the merge
method, which takes two
numpy arrays and returns the sorted union of the two arrays.
## merge.py
import numpy as np
import sortednp as snp
a = np.array([0, 3, 4, 6, 7])
b = np.array([1, 2, 3, 5, 7, 9])
m = snp.merge(a, b)
print(m)
If you run this, you should see the union of both arrays as a sorted numpy array.
$ python3 merge.py
[0 1 2 3 3 4 5 6 7 7 9]
Two sorted numpy arrays can be intersected with the intersect
method, which takes two
numpy arrays and returns the sorted intersection of the two arrays.
## intersect.py
import numpy as np
import sortednp as snp
a = np.array([0, 3, 4, 6, 7])
b = np.array([1, 2, 3, 5, 7, 9])
i = snp.intersect(a, b)
print(i)
If you run this, you should see the intersection of both arrays as a sorted numpy array.
$ python3 intersect.py
[3 7]
Returning array indices
The intersect
method takes an optional argument indices
which is False
by default. If this is set to True
, the return value consists of the
intersection array and a tuple with the indices of the common values for both
arrays. The index arrays have the length of the output. The indices show the
position in the input from which the value was copied.
## intersect_indices.py
import numpy as np
import sortednp as snp
a = np.array([2,4,6,8,10])
b = np.array([1,2,3,4])
intersection, indices = snp.intersect(a,b, indices=True)
print(intersection)
print(indices)
The above example gives:
$ python3 intersect_indices.py
[2 4]
(array([0, 1]), array([1, 3]))
The first line shows the intersection of the two arrays. The second line
prints a tuple with the indices where the common values appeared in the input
arrays. For example, the value 4
is at position 1
in array a
and at position
3
in array b
.
Since version 0.3.0, the merge
has to indices
argument too. The returned
indices have the length of the inputs. The indices show the position in the
output to which an input value was copied.
## merge_indices.py
import numpy as np
import sortednp as snp
a = np.array([2,4])
b = np.array([3,4,5])
merged, indices = snp.merge(a,b, indices=True)
print(merged)
print(indices)
The above example gives:
$ python3 merge_indices.py
[2 3 4 4 5]
(array([0, 2]), array([1, 3, 4]))
The first line shows that the two arrays have been merged. The second line
prints a tuple with the indices. For example, the value 3
from array b
can
be found at position 1
in the output.
Duplicate treatment
Since version 0.3.0, sortednp supported multiple different strategies to deal with duplicated entries.
Duplicates during intersecting
There are three different duplicate treatments for the intersect method:
-
sortednp.DROP
: Ignore any duplicated entries. The output will contain only unique values. -
sortednp.KEEP_MIN_N
: If an entry occursn
times in one input array andm
times in the other input array, the output will contain the entrymin(n, m)
times. -
sortednp.KEEP_MAX_N
: If an entry occursn
times in one input array andm
times in the other input array, the output will contain the entrymax(n, m)
times (assuming the entry occurs at least once in both arrays, i.e.n > 0
andm > 0
).
The strategy can be selected with the optional duplicates
argument of
intersect
. The default is sortednp.KEEP_MIN_N
. Consider the following example.
## intersect_duplicates.py
import numpy as np
import sortednp as snp
a = np.array([2, 4, 4, 5]) # Twice
b = np.array([3, 4, 4, 4, 5]) # Three times
intersect_drop = snp.intersect(a, b, duplicates=snp.DROP)
print(intersect_drop) # Contains a single 4
intersect_min = snp.intersect(a, b, duplicates=snp.KEEP_MIN_N)
print(intersect_min) # Contains 4 twice
intersect_max = snp.intersect(a, b, duplicates=snp.KEEP_MAX_N)
print(intersect_max) # Contains 4 three times
The above example gives:
$ python3 intersect_duplicates.py
[4 5]
[4 4 5]
[4 4 4 5]
Duplicates during merging
The merge
method offers three different duplicates treatment strategies:
-
sortednp.DROP
: Ignore any duplicated entries. The output will contain only unique values. -
sortednp.DROP_IN_INPUT
: Ignores duplicated entries in the input arrays separately. This is the same as ensuring that each input array unique values. The output contains every value at most twice. -
sortednp.KEEP
: Keep all duplicated entries. If an item occursn
times in one input array andm
times in the other input array, the output contains the itemn + m
times.
The strategy can be selected with the optional duplicates
.
The default is sortednp.KEEP
. Consider the following example.
## merge_duplicates.py
import numpy as np
import sortednp as snp
a = np.array([2, 4, 4, 5]) # Twice
b = np.array([3, 4, 4, 4, 5]) # Three times
merge_drop = snp.merge(a, b, duplicates=snp.DROP)
print(merge_drop) # Contains a single 4
merge_dii = snp.merge(a, b, duplicates=snp.DROP_IN_INPUT)
print(merge_dii) # Contains 4 twice
merge_keep = snp.merge(a, b, duplicates=snp.KEEP)
print(merge_keep) # Contains 4 five times
The above example gives:
$ python3 merge_duplicates.py
[2 3 4 5]
[2 3 4 4 5 5]
[2 3 4 4 4 4 4 5 5]
Index tracking and duplicates
Tracking indices with the indices=True
argument is possible while selecting a
non-default duplicate treatment strategy. For merging the indices point to the
position in the output array. If the input has duplicates that were skipped, the
index is simply repeated. For example with snp.DROP
, if the input is [9, 9, 9, 9]
, the index array for this input contains four times the position where
9
is found in the output.
Similarly, with snp.KEEP_MAX_N
and intersect
, the index of the last item in
the array with less occurrences is duplicates.
## duplicates_index.py
import numpy as np
import sortednp as snp
a = np.array([2, 4, 4, 5]) # Twice
b = np.array([3, 4, 4, 4, 5]) # Three times
# Merge
merge_drop, (index_a, index_b) = snp.merge(a, b,
duplicates=snp.DROP,
indices=True)
print(index_b)
# Intersect
intersect_max, (index_a, index_b) = snp.intersect(a, b,
duplicates=snp.KEEP_MAX_N,
indices=True)
print(index_a)
The above example gives:
$ python3 duplicates_index.py
[1 2 2 2 3]
[1 2 2 3]
For merging, this means that the three 4
s from the input all appear at same position
in the output, namely position 2
.
For the intersect, this means that the second and third occurrence of 4
in the
output, both came from item at position 2
in the input.
k-way methods
Similarly, the k-way intersect and merge methods take two or more arrays and perform the merge or intersect operation on its arguments.
## kway_intersect.py
import numpy as np
import sortednp as snp
a = np.array([0, 3, 4, 6, 7])
b = np.array([0, 3, 5, 7, 9])
c = np.array([1, 2, 3, 5, 7, 9])
d = np.array([2, 3, 6, 7, 8])
i = snp.kway_intersect(a, b, c, d)
print(i)
If you run this, you should see the intersection of all four arrays as a sorted numpy array.
$ python3 kway_intersect.py
[3 7]
The k-way merger sortednp.kway_merge
works analogously. However, the native
numpy
implementation is faster compared to the merge provided by this package.
The k-way merger has been added for completeness. The package heapq
provides
efficient methods to merge multiple arrays simultaneously.
The methods kway_merge
and kway_intersect
accept the optional keyword
argument assume_sorted
. By default, it is set to True
. If it is set to False
,
the method calls sort()
on the input arrays before performing the operation.
The default should be kept if the arrays are already sorted to save the time it
takes to sort the arrays.
Since the arrays might be too large to keep all of them in memory at the same
time, it is possible to pass a callable
instead of an array to the methods.
The callable
is expected to return the actual array. It is called immediately
before the array is required. This reduces the memory consumption.
Algorithms
Intersections are calculated by iterating both arrays. For a given element in
one array, the method needs to search the other and check if the element is
contained. In order to make this more efficient, we can use the fact that the
arrays are sorted. There are three search methods, which can be selected via the
optional keyword argument algorithm
.
sortednp.SIMPLE_SEARCH
: Search for an element by linearly iterating over the array element-by-element. More Information.sortednp.BINARY_SEARCH
: Slice the remainder of the array in halves and repeat the procedure on the slice which contains the searched element. More Information.sortednp.GALLOPING_SEARCH
: First, search for an element linearly, doubling the step size after each step. If a step goes beyond the search element, perform a binary search between the last two positions. More Information.
The default is sortednp.GALLOPING_SEARCH
. The performance of all three
algorithms is compared in the next section.
Performance
The performance of the package can be compared with the default implementation of numpy, the intersect1d` method. The ratio of the execution time between sortednp and numpy is shown for various different benchmark tests.
The merge or intersect time can be estimated under two different assumptions. If the arrays, which are merged or intersected, are already sorted, one should not consider the time it takes to sort the random arrays in the benchmark. On the other hand, if one considers a scenario in which the arrays are not sorted, one should take the sorting time into account.
Intersect
The performance of the intersection operation depends on the sparseness of the two arrays. For example, if the first element of one of the arrays is larger than all elements in the other array, only the other array has to be searched (linearly, binarily, or exponentially). Similarly, if the common elements are far apart in the arrays (sparseness), large chunks of the arrays can be skipped. The arrays in the benchmark contain random (unique) integers. The sparseness is defined as the average difference between two consecutive elements in one array.
The first set of tests studies the performance dependence on the size of the arrays. The second set of tests studies the dependence on the sparseness of the array.
Assume sorted arrays
The following table summarizes the performance compared to numpy if one ignores the time it takes to sort the initial arrays.
Test | Simple Search | Binary Search | Galloping Search |
---|---|---|---|
Intersect | |||
Intersect Sparseness |
Include sorting time
The following table summarizes the performance compared to numpy if one takes the time it takes to sort the initial arrays into account.
Test | Simple Search | Binary Search | Galloping Search |
---|---|---|---|
Intersect | |||
Intersect Sparseness |
Merge
Assume sorted | Include sorting time |
---|---|
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for sortednp-0.3.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 113a19186326fa699d061b3cdc955b978280374d5b185b0926d6e3e4623f7ce9 |
|
MD5 | b9f227ff04d8efa140ff15d514501c83 |
|
BLAKE2b-256 | b6cfa4bcc7c52720d51d2fe8fe3aa7bea8c536370813975b8dad580ce8a55d13 |
Hashes for sortednp-0.3.0-cp39-cp39-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6cbc31261e905db71c6261768f8be540ce47b8efe361da66325e7f2f11f49b9 |
|
MD5 | 3304d18ed09c2643e895cca693e62842 |
|
BLAKE2b-256 | 9e7fe0f237e1614a1f4a242472c7682ba1793cad49349d2231f6241f6e334000 |
Hashes for sortednp-0.3.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | daa9fe3fae6f63dd836ad65dd2e004dbfc5ddcde41df769e3fd3eff2cf1defe3 |
|
MD5 | 912dd82f2ac74071839ac71226fa2310 |
|
BLAKE2b-256 | 85fcf584202d9ffce6818db773590db397e802eba58a9ca9a5d485fb62ba3405 |
Hashes for sortednp-0.3.0-cp39-cp39-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 798aee7e72f156bd719ebbafe79b365065de45c2159e401c84dd192071ce3aec |
|
MD5 | 430f4fe0b7948dd42c1ce3548a6bc4dc |
|
BLAKE2b-256 | 41260b540858b4cced15f36998f582fd56c13e637ecd82c5130c8d255886ebc6 |
Hashes for sortednp-0.3.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 118b706f18394080331e44975eed58739363439804857fe5dc9fcd4a39aa1734 |
|
MD5 | 829d38d72d161b84c6bf678011b4811e |
|
BLAKE2b-256 | 8566d14feb5768bdfca1f1ff94ab0ffa3c85d3abf3657e345ad6ba5124635b8c |
Hashes for sortednp-0.3.0-cp38-cp38-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0c3f42adc97b1e4ccb885c6a728e069f9bc8c602896e0108462e32efbe16d18 |
|
MD5 | 9f40bdaca0ab5dc1f6de47794b892fbe |
|
BLAKE2b-256 | 7d1d51f5b2e68c711a8f1160c49e1cc21cd6ae661c0e69677351e2f40e6bd57d |
Hashes for sortednp-0.3.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4f75a2a35c24c880299d66c613a72ac544413b95dae9c0a74a4c6cbb5e37613 |
|
MD5 | 99e171bf1477c6c64b8feb45b497e67c |
|
BLAKE2b-256 | 81620983cfe8faa2389dd602a8bf2141378f366a88aec10600afe579facddf5d |
Hashes for sortednp-0.3.0-cp38-cp38-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6af49410e9025a7198b4a2101abb5384519d61d0064fc2934146a0018e2fd0ac |
|
MD5 | d0eb589cbd1c4d63574fc0422c80f2a1 |
|
BLAKE2b-256 | a5505d1714e768e62f2630cbdc341b1a02fb7c332e5b3e1cd79094bc586d2785 |
Hashes for sortednp-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9510332ecd89f7ef5b4fd54f7eea2a80c03e04dda97a97c274660ae3aacd5ae8 |
|
MD5 | f01d1321644a90afc796544b9b900aec |
|
BLAKE2b-256 | 4fff96d57cdf7465a1d82ed5cf0b9cbed97c2bad458bafd899d29caabefdf66d |
Hashes for sortednp-0.3.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2f3ecf19662ee73473613319aa0041a7d2cc7a43e856bed4bc3f00c108bdaae |
|
MD5 | 77b1f266277d7d7f82fdd9c58e7f84d6 |
|
BLAKE2b-256 | 0218c5470c7374a2af1d3e413c2eb707fe4fea40469b338ad988e395e5a1198b |
Hashes for sortednp-0.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd7ce2950b30807671c39579abc3e9b22f8824c44799327a7c2a4685651d00e2 |
|
MD5 | b42c7a962c7c699b6609500b7a07051b |
|
BLAKE2b-256 | abd9f10ee3d7d21378d34939eb2dc3992986456e849656193971f8b8874fc27a |
Hashes for sortednp-0.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97c9459431a7cbe3597124e5b55f411936ef267a98ac811d3b4549de87f8ddda |
|
MD5 | c262ceb67e3d158508bb392c52ce3d28 |
|
BLAKE2b-256 | c10301fdf06f7b3f377f074d7c510ebd3397f64305fc0baae9ab768d7138af41 |
Hashes for sortednp-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6a90f1ed491a58c3d12fc5f42aa265fd3cd7a33995a94ae816e30b7371799a3 |
|
MD5 | 152cd60e27a8336fce515b13513df32e |
|
BLAKE2b-256 | 77b7448242b002925bee1752758def1d912911e013401617f69ff090cb7cc107 |
Hashes for sortednp-0.3.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d935550ff292cdaf4e39ca7cd1797ba28b720f1bf0d6f0bcdf4be04ac0ea638f |
|
MD5 | 2fd74f76589673b2220e410d3400a193 |
|
BLAKE2b-256 | 395422677b6ac129bc4ce3e09b2bc3cfb5f82afad8a32e32106168addcb49946 |
Hashes for sortednp-0.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 051a93fe66b68c4bbcf3befebac8b6805c6272a2735e67d1c0e47d7b39c0bbee |
|
MD5 | 2a7397b9e3a01546fb4a6552cc6d88c4 |
|
BLAKE2b-256 | 7af9aee5e36fb56c6a26b1945d728e5cd789d0776a026255ea5053b7a97e2122 |
Hashes for sortednp-0.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13d4e9736068e3e07a9fd5f99d02e023500bab21bfdf057e09719764a6b8d2c7 |
|
MD5 | 09f930a3d764305dc005c97d294ac83f |
|
BLAKE2b-256 | fa847fb19572a7a0870e913a360a56f60752a448bab614a85086192dcc5ef9fc |
Hashes for sortednp-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b62fad286b5f38023ee360bbd495ce24d034bac0b51ca3c3ebbbabab70eae19 |
|
MD5 | 0d4876b13962005673aaf607f9059fa6 |
|
BLAKE2b-256 | 518c20d329db5c03f49472a9538f8df195f2e7bb09659d83dfcf3aadb58d793c |
Hashes for sortednp-0.3.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 702413201ba37fdd8a4dbb762db20d1d95af16ed0ffab78e4c832314a87b5654 |
|
MD5 | b5c8008247dc01f35197c07a2d30dd18 |
|
BLAKE2b-256 | dacf6633e15c03024c3d7155abf535160cdf416ee0901275e45705e7ccc44946 |
Hashes for sortednp-0.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59c5b5157ef547b0dfbc8a53ec8858d9d9306778300dfd3360bedf26759994b9 |
|
MD5 | 51d6775638ba3fa27f7a120dd5273971 |
|
BLAKE2b-256 | 94db6c5d05b48ecfc6c8ac91918a39795bda7b3d79903bf09118a44e82cf8660 |
Hashes for sortednp-0.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aaa6bf155d9ef40cc1bc54a948704e613505d343510b336421f8d8b75b2c54b3 |
|
MD5 | 3166fed72044d922d09104fea05281c3 |
|
BLAKE2b-256 | 6817e8771a2dc216790117800a9e81ab853788d338f8dd49d8455bcecbac0c06 |