Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 1.32 KB

README.md

File metadata and controls

20 lines (13 loc) · 1.32 KB

sketchbook

Implementing a handful of sketching data structures for the fun of it. :) See slides for my talk on sketching data structures for context!

Implemented:

coming soon

  • Count Min Sketches produces an approximate frequency table of items in a stream. It can overestimate frequency, but will never underestimate. It's very similar to a Bloom Filter in implementation.

  • T-digests are an improvement on Q-digests, which estimate quantiles of a stream with minimal error at the extremes.