tdigest-Chart: Chart generation from tdigest

[ bsd3, graphics, library, numeric ] [ Propose Tags ]

Chart generation from tdigest.

...

[Skip to Readme]

Modules

[Index]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0, 0.2
Change log CHANGELOG.md
Dependencies base (>=4.7 && <4.15), base-compat (>=0.10.1 && <0.12), Chart (>=1.8.3 && <1.10), colour (>=2.3.3 && <2.4), lens (>=4.15.4 && <4.20), semigroupoids (>=5.2.2 && <5.4), semigroups (>=0.18.4 && <0.20), tdigest (>=0.2 && <0.3) [details]
License BSD-3-Clause
Author Oleg Grenrus <oleg.grenrus@iki.fi>
Maintainer Oleg Grenrus <oleg.grenrus@iki.fi>
Revised Revision 3 made by phadej at 2020-04-16T09:19:26Z
Category Numeric, Graphics
Home page https://github.com/futurice/haskell-tdigest#readme
Bug tracker https://github.com/futurice/haskell-tdigest/issues
Source repo head: git clone https://github.com/futurice/haskell-tdigest
Uploaded by phadej at 2018-04-13T12:58:53Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1770 total (6 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-04-13 [all 1 reports]

Readme for tdigest-Chart-0.2

[back to package description]

tdigest-Chart

A Chart plotting of tdigest

Examples

These are outputs of the test-suite

inkscape --export-png=example1.png --export-dpi=80 --export-background-opacity=0 --without-gui example1.svg
inkscape --export-png=example2.png --export-dpi=80 --export-background-opacity=0 --without-gui example2.svg

Standard normal distribution

Chart.layout_title Chart..= "Normal distribution"
Chart.plot $ do
    p <- Chart.tdigestPlot "tdigest" td
    return $ Chart.tdigestToPlot $ p
        & Chart.plot_tdigest_normalize .~ True
        & Chart.plot_tdigest_deviations .~ Just 3

Example 1

Chi-squared distribution, k = 5

Chart.layout_title Chart..= "Chi-squared distribution, k = 5"
Chart.plot $ do
    p <- Chart.tdigestPlot "tdigest" td
    return $ Chart.tdigestToPlot $ p
        & Chart.plot_tdigest_normalize .~ True
        & Chart.plot_tdigest_quantiles .~ [0.5, 0.9, 0.999]

Example 2