histogram-simple: Simple Data.Map-based histogram

[ bsd3, data, library ] [ Propose Tags ]

A histogram counts occurrences of things, i.e. Histogram k represents a mapping k -> Natural.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0, 1.1, 1.2
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5), containers (>=0.5.11 && <0.7) [details]
License BSD-3-Clause
Copyright 2019 Cross Compass Ltd.
Author Cross Compass Ltd.
Maintainer jonascarpay@gmail.com
Category Data
Home page https://github.com/xc-jp/histogram-simple#readme
Uploaded by jonascarpay at 2021-12-06T06:29:37Z
Distributions NixOS:1.2
Downloads 412 total (12 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-12-06 [all 1 reports]

Readme for histogram-simple-1.2

[back to package description]

histogram-simple

Hackage version Stackage version

Simple Data.Map-based histogram. A histogram counts occurrences of things, i.e. Histogram k represents a mapping k -> Int. Since it is backed by a Map from Data.Map, it requires k to have an Ord instance.