Descriptives<T> Class

Collects descriptive statistics for a variable.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class Descriptives<T>
Inheritance
Object  →  Descriptives<T>

Type Parameters

T

Constructors

Descriptives<T> Constructs a new descriptive statistics object.

Properties

CentralSumOfSquares Gets the sum of squares around the mean.
Count Gets the number of actual values.
FirstQuartile Gets the first quartile.
HasCategoricalDescriptives Gets whether the current instance contains statistics for categorical data.
HasNumericalDescriptives Gets whether the current instance contains statistics for numerical data.
HasQuartiles Gets whether the current instance contains quartiles.
Kurtosis Gets the biased kurtosis (supplement).
Maximum Gets the largest value.
Mean Gets the mean.
Median Gets the median.
Minimum Gets the smallest value.
MissingCount Gets the number of missing values.
Mode Gets the value that occurs most often.
ModeCount Gets the num
Range Gets the difference between the largest and the smallest value.
Skewness Gets the biased skewness.
StandardDeviation Gets the unbiased standard deviation.
SumOfSquares Gets the sum of squares.
ThirdQuartile Gets the third quartile.
Unique Gets the number of unique elements, excluding missing values.
Variance Gets the unbiased variance.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also