Click or drag to resize
Accord.NET (logo)

IRunningStatistics Interface

Common interface for running statistics.

Namespace:  Accord.Statistics.Running
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IRunningStatistics : IRunning<double>
Request Example View Source

The IRunningStatistics type exposes the following members.

Properties
  NameDescription
Public propertyMean
Gets the current mean of the gathered values.
Public propertyStandardDeviation
Gets the current standard deviation of the gathered values.
Public propertyVariance
Gets the current variance of the gathered values.
Top
Methods
Remarks
Running statistics are measures computed as data becomes available. When using running statistics, there is no need to know the number of samples a priori, such as in the case of the direct Mean(Double).
See Also