aivika-2.1: A multi-paradigm simulation library

Stabilityexperimental
MaintainerDavid Sorokin <david.sorokin@gmail.com>
Safe HaskellSafe-Inferred

Simulation.Aivika.Statistics

Contents

Description

Tested with: GHC 7.8.3

Represents statistics.

Synopsis

Simple Statistics

data SamplingStats a Source

Describes when the statistics consists of only samples not bound to the simulation time.

Constructors

SamplingStats 

Fields

samplingStatsCount :: !Int

The total number of samples.

samplingStatsMin :: !a

The minimum value among the samples.

samplingStatsMax :: !a

The maximum value among the samples.

samplingStatsMean :: !Double

The average value.

samplingStatsMean2 :: !Double

The average square value.

Instances

class SamplingData a whereSource

Specifies data type from which values we can gather the statistics.

Methods

emptySamplingStats :: SamplingStats aSource

An empty statistics that has no samples.

addSamplingStats :: a -> SamplingStats a -> SamplingStats aSource

Add a new sample to the statistics.

combineSamplingStats :: SamplingStats a -> SamplingStats a -> SamplingStats aSource

Combine two statistics.

Instances

combineSamplingStatsEither :: SamplingData a => Either a (SamplingStats a) -> SamplingStats a -> SamplingStats aSource

If allows combining statistics more efficiently if we know that the first argument can be a scalar.

samplingStatsVariance :: SamplingStats a -> DoubleSource

Return the variance.

samplingStatsDeviation :: SamplingStats a -> DoubleSource

Return the deviation.

samplingStatsSummary :: Show a => SamplingStats a -> Int -> ShowSSource

Show the summary of the statistics using the specified indent.

returnSamplingStats :: SamplingData a => a -> SamplingStats aSource

Return the statistics by a single sample.

listSamplingStats :: SamplingData a => [a] -> SamplingStats aSource

Create the statistics by the specified list of data.

fromIntSamplingStats :: SamplingStats Int -> SamplingStats DoubleSource

Convert the statistics from integer to double values.

Timing Statistics

data TimingStats a Source

This is the timing statistics where data are bound to the time.

Constructors

TimingStats 

Fields

timingStatsCount :: !Int

Return the number of samples.

timingStatsMin :: !a

Return the minimum value.

timingStatsMax :: !a

Return the maximum value.

timingStatsMinTime :: !Double

Return the time at which the minimum is attained.

timingStatsMaxTime :: !Double

Return the time at which the maximum is attained.

timingStatsStartTime :: !Double

Return the start time of sampling.

timingStatsLastTime :: !Double

Return the last time of sampling.

timingStatsSum :: !Double

Return the sum of values.

timingStatsSum2 :: !Double

Return the sum of square values.

Instances

Eq a => Eq (TimingStats a) 
Ord a => Ord (TimingStats a) 
(Show a, TimingData a) => Show (TimingStats a) 
ResultItemable (ResultValue (TimingStats Double)) 
ResultItemable (ResultValue (TimingStats Int)) 
ResultComputing m => ResultProvider (m (TimingStats Int)) 
ResultComputing m => ResultProvider (m (TimingStats Double)) 

class TimingData a whereSource

Defines the data type from which values we can gather the timing statistics.

Methods

emptyTimingStats :: TimingStats aSource

An empty statistics that has no samples.

addTimingStats :: Double -> a -> TimingStats a -> TimingStats aSource

Add a sample with the specified time to the statistics.

timingStatsMean :: TimingStats a -> DoubleSource

Return the average value.

timingStatsVariance :: TimingStats a -> DoubleSource

Return the variance.

Instances

TimingData Double 
TimingData Int 

timingStatsDeviation :: TimingData a => TimingStats a -> DoubleSource

Return the deviation.

timingStatsSummary :: (Show a, TimingData a) => TimingStats a -> Int -> ShowSSource

Show the summary of the statistics using the specified indent.

returnTimingStats :: TimingData a => Double -> a -> TimingStats aSource

Return the statistics by single timing data.

fromIntTimingStats :: TimingStats Int -> TimingStats DoubleSource

Convert the statistics from integer to double values.