Click or drag to resize

StatCollection Class

The base class for statistic calculation.
Inheritance Hierarchy
SystemObject
  FinAnalysis.BaseStatCollection
    FinAnalysis.BaseStatAccumulator
    FinAnalysis.BaseStatQueue
    FinAnalysis.BaseStatSet

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis (in FinAnalysis.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public abstract class StatCollection

The StatCollection type exposes the following members.

Properties
  NameDescription
Public propertyArithmeticMean
Get Arithmetic Mean. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
Public propertyCoefficientOfVariation
Get Coefficient Of Variation of stored set of values. http://en.wikipedia.org/wiki/Coefficient_of_variation
Public propertyCount
Get the number of elements stored.
Public propertyExpectedValue
Get estimation of distribution's Expected Value. http://en.wikipedia.org/wiki/Expected_value
Public propertyFirstRawMoment
Get estimation of distribution's First Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
Public propertyForthRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
Public propertyFourthCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
Public propertyGeometricMean
Get Geometric mean. https://en.wikipedia.org/wiki/Average#Geometric_mean
Public propertyHarmonicMean
Get Harmonic mean. http://en.wikipedia.org/wiki/Average#Harmonic_mean
Public propertyKurtosis
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
Public propertyMax
Returns the maximal value.
Public propertyMiddleRange
Get MiddleRange: the arithmetic mean of the maximum and minimum values in a data set. http://en.wikipedia.org/wiki/Mid-range
Public propertyMin
Returns the minimal value.
Public propertyQuadraticMean
Get Quadratic Mean. http://en.wikipedia.org/wiki/Quadratic_mean
Public propertyRange
Get Range: difference between maximum and minimum.
Public propertyRootMeanSquare
The Root mean square (also known as Quadratic Mean). https://en.wikipedia.org/wiki/Root_mean_square
Public propertySecondCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
Public propertySecondRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
Public propertySkewness
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
Public propertyStandardDeviation
Get distribution's Standard Deviation, same as StandardDeviationPopulation. http://en.wikipedia.org/wiki/Standard_Deviation
Public propertyStandardDeviationPopulation
Get distribution's Standard Deviation. http://en.wikipedia.org/wiki/Standard_Deviation
Public propertyStandardDeviationSample
Get estimation of distribution's Standard Deviation. http://en.wikipedia.org/wiki/Standard_Deviation
Public propertySum
Get sum of values stored in the set.
Public propertySumOfAbsoluteValues
Get sum of absolute values stored in the set.
Public propertySumOfSquares
Returns sum of squares.
Public propertyThirdCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
Public propertyThirdRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
Public propertyVariance
Get distribution's Variance, same as VariancePopulation. http://en.wikipedia.org/wiki/Variance
Public propertyVariancePopulation
Get distribution's Variance. http://en.wikipedia.org/wiki/Variance
Public propertyVarianceSample
Get estimation distribution's Variance. http://en.wikipedia.org/wiki/Variance
Top
Methods
  NameDescription
Public methodCopyTo
Copy internal state to destination object.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also