histogram-fill-0.7.4.0: Library for histograms creation.

Safe HaskellNone

Data.Histogram.Bin.LogBinD

Synopsis

Documentation

data LogBinD Source

Uniform binning in logarithmic scale. For roundtripping use:

 b = logBinDN (lowerLimit b) (logBinDIncrement b) (nBins b)

logBinDIncrement :: LogBinD -> DoubleSource

Increment ratio for LogBinD

logBinDSource

Arguments

:: Double

Lower limit

-> Int

Number of bins

-> Double

Upper limit

-> LogBinD 

Create log-scale binning algorithm.

logBinDNSource

Arguments

:: Double

Lower limit

-> Double

Increment ratio. Must be greater than 1

-> Int

Number of bins

-> LogBinD