Skip to content

Commit

Permalink
Readme and doc update.
Browse files Browse the repository at this point in the history
  • Loading branch information
n8allan committed Feb 28, 2024
1 parent 9224641 commit 0c30c41
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 35 deletions.
40 changes: 20 additions & 20 deletions docs/classes/Sparstogram.html

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions docs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/interfaces/Centroid.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/interfaces/Peak.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/interfaces/Quantile.html

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sparstogram Library

Sparse, adaptive, scalable histogram in TypeScript
Sparse/dense, adaptive, scalable histogram in TypeScript. [On GitHub](https://github.com/Digithought/Sparstogram).

This Typescript library provides a sophisticated data structure for efficiently characterizing large datasets through histograms.
This Typescript library provides a sophisticated data structure for efficiently characterizing datasets through histograms.

## Summary

Expand All @@ -22,6 +22,7 @@ The implementation uses B+Trees to efficiently maintain the centroids and losses
* Quantile information includes the centroid, variance, count, rank, and offset within bucket
* Can compute local maxima ("peaks") with average window smoothing
* Directional iteration of centroids from the ends, a marker, a value, or by loss
* Scalable - uses in-memory B+Trees ([Digitree](https://github.com/Digithought/Digitree)) which are fast and balanced

### Why programmers need histograms

Expand Down Expand Up @@ -52,7 +53,9 @@ Or, if you prefer using `pnpm`:
pnpm add sparstogram
```

## Usage Examples
## Usage

#### [Reference Documentation](https://digithought.github.io/Sparstogram/)

### Creating a Sparstogram

Expand Down

0 comments on commit 0c30c41

Please sign in to comment.