Skip to content

Commit

Permalink
Improve README and clean bad test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sytten committed Jan 28, 2021
1 parent 14815be commit aae9f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Continuous Integration](https://github.com/GraphMetrics/sketches-js/workflows/Continuous%20Integration/badge.svg) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

This repo contains the TypeScript implementation of the distributed quantile sketch algorithm [DDSketch](http://www.vldb.org/pvldb/vol12/p2195-masson.pdf). DDSketch is mergeable, meaning that multiple sketches from distributed systems can be combined in a central node.
This repo contains the TypeScript implementation of the distributed quantile sketch algorithm [DDSketch](http://www.vldb.org/pvldb/vol12/p2195-masson.pdf) originally developed by [DataDog](https://github.com/DataDog/sketches-js). DDSketch is mergeable, meaning that multiple sketches from distributed systems can be combined in a central node.

## Installation

Expand Down Expand Up @@ -45,7 +45,7 @@ const sketch = new DDSketch({

### Add values to a sketch

To add a number to a sketch, call `sketch.accept(value)`. Only positive numbers above or equal to 1 are supported.
To add a number to a sketch, call `sketch.accept(value)`. Only positive numbers above 0 are supported.

```js
const measurementOne = 1607374726;
Expand Down
19 changes: 0 additions & 19 deletions test/test.test.ts

This file was deleted.

0 comments on commit aae9f50

Please sign in to comment.