Click or drag to resize

StatWindow Class

Statistical analysis window class.
Inheritance Hierarchy
SystemObject
  FinAnalysis.BaseStatCollection
    FinAnalysis.BaseStatQueue
      FinAnalysis.BaseStatWindow

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis (in FinAnalysis.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public class StatWindow : StatQueue, ICloneable

The StatWindow type exposes the following members.

Constructors
  NameDescription
Public methodStatWindow(Int32)
Construct statistical analysis window on capacity points.
Public methodStatWindow(TimeSpan)
Construct statistical analysis window on timePeriod time interval.
Top
Properties
  NameDescription
Public propertyArithmeticMean
Get Arithmetic Mean. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Inherited from StatCollection.)
Public propertyCoefficientOfVariation
Get Coefficient Of Variation of stored set of values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Inherited from StatCollection.)
Public propertyCount
Get the number of elements stored.
(Inherited from StatCollection.)
Public propertyExpectedValue
Get estimation of distribution's Expected Value. http://en.wikipedia.org/wiki/Expected_value
(Inherited from StatCollection.)
Public propertyFirst
Returns queue front element value or Double.NaN if there are no elements in the collection.
(Inherited from StatQueue.)
Public propertyFirstDateTime
Returns queue front element time stamp or default(DateTime) if there are no elements in the collection.
(Inherited from StatQueue.)
Public propertyFirstRawMoment
Get estimation of distribution's First Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Inherited from StatCollection.)
Public propertyForthRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Inherited from StatCollection.)
Public propertyFourthCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
(Inherited from StatCollection.)
Public propertyGeometricMean
Get Geometric mean. https://en.wikipedia.org/wiki/Average#Geometric_mean
(Inherited from StatCollection.)
Public propertyHarmonicMean
Get Harmonic mean. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Inherited from StatCollection.)
Public propertyKurtosis
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Inherited from StatCollection.)
Public propertyLast
Returns queue back element value or Double.NaN if there are no elements in the collection.
(Inherited from StatQueue.)
Public propertyLastDateTime
Returns queue back element time stamp or default(DateTime) if there are no elements in the collection.
(Inherited from StatQueue.)
Public propertyMax
Returns the maximal value.
(Inherited from StatCollection.)
Public propertyMedian
The observed data median value. http://en.wikipedia.org/wiki/Median
(Inherited from StatQueue.)
Public propertyMiddleRange
Get MiddleRange: the arithmetic mean of the maximum and minimum values in a data set. http://en.wikipedia.org/wiki/Mid-range
(Inherited from StatCollection.)
Public propertyMin
Returns the minimal value.
(Inherited from StatCollection.)
Public propertyQuadraticMean
Get Quadratic Mean. http://en.wikipedia.org/wiki/Quadratic_mean
(Inherited from StatCollection.)
Public propertyRange
Get Range: difference between maximum and minimum.
(Inherited from StatCollection.)
Public propertyRootMeanSquare
The Root mean square (also known as Quadratic Mean). https://en.wikipedia.org/wiki/Root_mean_square
(Inherited from StatCollection.)
Public propertySecondCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
(Inherited from StatCollection.)
Public propertySecondRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Inherited from StatCollection.)
Public propertySkewness
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Inherited from StatCollection.)
Public propertyStandardDeviation
Get distribution's Standard Deviation, same as StandardDeviationPopulation. http://en.wikipedia.org/wiki/Standard_Deviation
(Inherited from StatCollection.)
Public propertyStandardDeviationPopulation
Get distribution's Standard Deviation. http://en.wikipedia.org/wiki/Standard_Deviation
(Inherited from StatCollection.)
Public propertyStandardDeviationSample
Get estimation of distribution's Standard Deviation. http://en.wikipedia.org/wiki/Standard_Deviation
(Inherited from StatCollection.)
Public propertySum
Get sum of values stored in the set.
(Inherited from StatCollection.)
Public propertySumOfAbsoluteValues
Get sum of absolute values stored in the set.
(Inherited from StatCollection.)
Public propertySumOfSquares
Returns sum of squares.
(Inherited from StatCollection.)
Public propertyThirdCentralMoment
Get estimation of distribution's Second Central Moment. http://en.wikipedia.org/wiki/Central_moment
(Inherited from StatCollection.)
Public propertyThirdRawMoment
Get estimation of distribution's Second Raw Moment. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Inherited from StatCollection.)
Public propertyVariance
Get distribution's Variance, same as VariancePopulation. http://en.wikipedia.org/wiki/Variance
(Inherited from StatCollection.)
Public propertyVariancePopulation
Get distribution's Variance. http://en.wikipedia.org/wiki/Variance
(Inherited from StatCollection.)
Public propertyVarianceSample
Get estimation distribution's Variance. http://en.wikipedia.org/wiki/Variance
(Inherited from StatCollection.)
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
Public methodCopyTo
Copy internal state to destination object.
(Overrides StatQueueCopyTo(StatCollection).)
Public methodCumulativeDistribution
Return the cumulative distribution function of the observed data at the specified point.
(Inherited from StatQueue.)
Public methodEnableTree
Fill the internal AVL tree for data storing.
(Inherited from StatQueue.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetFirst
Get the iterator to the first element of the queue.
(Inherited from StatQueue.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodOrderStatistic
Get the order statistic of the observed data. http://en.wikipedia.org/wiki/Order_statistic
(Inherited from StatQueue.)
Public methodPointsAgo
Returns element of index elements prior the queue last element.
(Inherited from StatQueue.)
Public methodPut
Add element to the collection.
Public methodQuantile
Get the quantile of the observed data. http://en.wikipedia.org/wiki/Quantile
(Inherited from StatQueue.)
Public methodTimeAgo
Returns last element with time stamp less or equal to the timestamp argument.
(Inherited from StatQueue.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also