Update README with project status
- Id
- d604b3cb922cf72841eb81cd276ea2bfbb9f7500
- Author
- Caio
- Commit time
- 2017-02-17T00:41:47+01:00
Modified README.md
# T-Digest
-A map-reduce and parallel streaming friendly data-structure for accurate
+A fast map-reduce and parallel streaming friendly data-structure for accurate
quantile approximation.
-This package provides a very crude implementation of Ted Dunning's t-digest
-data structure in Go.
+This package provides an implementation of Ted Dunning's t-digest data
+structure in Go.
[](https://travis-ci.org/caio/go-tdigest)
[](http://godoc.org/github.com/caio/go-tdigest)
[](https://goreportcard.com/report/github.com/caio/go-tdigest)
+
+## Project Status
+
+This project is activelly maintained. There hasn't been a need for new features
+or bugs in a while, so there isn't much activity but I'm more than willing to
+cooperate on bugs and/or requests.
## Installation
}
```
-## Disclaimer
-
-I've written this solely with the purpose of understanding how the
-data-structure works, it hasn't been throughly verified nor battle tested
-in a production environment.
-
## References
-This is a very simple port of the [reference][1] implementation with some
-ideas borrowed from the [python version][2]. If you wanna get a quick grasp of
-how it works and why it's useful, [this video and companion article is pretty
-helpful][3].
+This is a port of the [reference][1] implementation with some ideas borrowed
+from the [python version][2]. If you wanna get a quick grasp of how it works
+and why it's useful, [this video and companion article is pretty helpful][3].
[1]: https://github.com/tdunning/t-digest
[2]: https://github.com/CamDavidsonPilon/tdigest