hs-carbon-0.0.1.0: A Haskell framework for parallel monte carlo simulations

Safe HaskellSafe-Inferred

Data.Summary

Synopsis

Documentation

class Summary s whereSource

Many Monte Carlo simulations require statistical analysis of the results. Any Result instances which can be described statistically should be made instances of Summary.

Methods

sampleMean :: s -> DoubleSource

Compute the mean of the aggregated observations

sampleSE :: s -> DoubleSource

Compute the std. error of the aggregated observations

sampleSize :: s -> IntSource

Return the number of observations aggregated

Instances