A Python implementation of the Recordinality sketch
Project description
A Python implementation of the Recordinality sketch for cardinality estimation and stream sampling. Inspired by C. Scott Andreas’s implementation, but powered by SipHash-2-4 rather than MurmurHash3. In particular, this project uses two other libraries of mine: csiphash and cskipdict.
Installation
pip install recordinality
Usage
You can use the command-line application, which will read lines of text incrementally from stdin, printing the stream’s cardinality (or a random sample) once the pipe is closed:
$ recordinality -k <sketch-size> [-h|--hash-key <hash-key>] [-s|--sample] < input-lines.txt 3574 $ cat input-lines.txt | sort -u | wc -l 3556
SipHash allows the specification of a ‘secret key’ (used here as more of a hash seed); if provided it should be either a 16-char ASCII string or 32-char hexadecimal string.
You can also import the Recordinality class in Python:
>>> from recordinality import Recordinality
>>> sketch = Recordinality(size=512)
>>> for observation in input_observations:
... sketch.add(observation)
>>> print(sketch.cardinality())
3574
>>> print(sketch.k_sample)
['strife', 'bragging', 'knight?', ...]
Unlicense
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to http://unlicense.org/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file recordinality-0.0.4.tar.gz
.
File metadata
- Download URL: recordinality-0.0.4.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d554f7c2fc50b94a45d85b9f3c42cf7aa3f1586a37ec89530c4109aa3e50ebfd |
|
MD5 | 50cc592d0c1b7a5b4bc148511b172f98 |
|
BLAKE2b-256 | 9a0ae344b1598fbc0b3f3ce887a9a032e4390c201484fafa33e348ac1fb297ec |
File details
Details for the file recordinality-0.0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: recordinality-0.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfaf61b9a49c7e9d1a05f490b6d8bd6beaf89e14b994dce25157d3670978b54d |
|
MD5 | 0d6cee351c5bec9056cb96f2d9576d74 |
|
BLAKE2b-256 | 6ac1520ebfde0c4d8185b2d668f45890b3c539cccbfc100e084953b718faf163 |