Implemented HyperLogLog algorithm
Pre-release
Pre-release
NEW
- HyperLogLog algorithm implementation
HyperLogLog algorithm was proposed by Philippe Flajolet, Éric Fusy, Olivier Gandouet, and Frédéric Meunier in 2007. There is a number of modifications of the algorithm, but this implementation uses the original version with a 32-bit hash function.
FIXES
- Fix cardinality estimation in Bloom filters
- Correct the inline example for q-digest
- Removed support for Python < 3.5