sketches-go icon indicating copy to clipboard operation
sketches-go copied to clipboard

Go implementations of the distributed quantile sketch algorithm DDSketch

Results 5 sketches-go issues
Sort by recently updated
recently updated
newest added

- Reuse available previously allocated pages: previously, we would reuse one only if it has the same index in `s.pages`. - Do not preallocate memory for the buffer: it does...

Bumps google.golang.org/protobuf from 1.28.0 to 1.33.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.28.0&new-version=1.33.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...

dependencies

Bumps gopkg.in/yaml.v3 from 3.0.0-20200313102051-9f266ea9e77c to 3.0.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gopkg.in/yaml.v3&package-manager=go_modules&previous-version=3.0.0-20200313102051-9f266ea9e77c&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

I recently noticed that the library floors the result when [determining the bin index](https://github.com/DataDog/sketches-go/blob/master/ddsketch/mapping/logarithmic_mapping.go#L69-L76). However, [the paper](https://www.vldb.org/pvldb/vol12/p2195-masson.pdf) seems to indicate the we should ceil the result. The floor logic is...

### What does this PR do? A brief description of the change being made with this pull request. Have `GetValueAtQuantile` return min and max for quantiles 0 and 100. `DDSketchWithExactSummaryStatistics`...