Click or drag to resize

Stat Class

Provides static methods for common statistical functions.
Inheritance Hierarchy
SystemObject
  Novacta.AnalyticsStat

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static class Stat
Methods
  NameDescription
Public methodStatic memberCode exampleCorrelation(DoubleMatrix, DataOperation)
Returns the correlations among the rows or the columns of the specified data.
Public methodStatic memberCode exampleCorrelation(ReadOnlyDoubleMatrix, DataOperation)
Returns the correlations among the rows or the columns of the specified data.
Public methodStatic memberCode exampleCovariance(DoubleMatrix, Boolean, DataOperation)
Returns the covariances among the rows or the columns of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleCovariance(ReadOnlyDoubleMatrix, Boolean, DataOperation)
Returns the covariances among the rows or the columns of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleKurtosis(DoubleMatrix, Boolean)
Returns the kurtosis of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleKurtosis(ReadOnlyDoubleMatrix, Boolean)
Returns the kurtosis of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleKurtosis(DoubleMatrix, Boolean, DataOperation)
Returns the kurtosis of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleKurtosis(ReadOnlyDoubleMatrix, Boolean, DataOperation)
Returns the kurtosis of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleMax(DoubleMatrix)
Returns the maximum value and the linear index of its first occurrence in the specified data.
Public methodStatic memberCode exampleMax(ReadOnlyDoubleMatrix)
Returns the maximum value and the linear index of its first occurrence in the specified data.
Public methodStatic memberCode exampleMax(DoubleMatrix, DataOperation)
Returns the largest entries in rows or columns of the specified data.
Public methodStatic memberCode exampleMax(ReadOnlyDoubleMatrix, DataOperation)
Returns the largest entries in rows or columns of the specified data.
Public methodStatic memberCode exampleMean(DoubleMatrix)
Returns the arithmetic mean of the specified data.
Public methodStatic memberCode exampleMean(ReadOnlyDoubleMatrix)
Returns the arithmetic mean of the specified data.
Public methodStatic memberCode exampleMean(DoubleMatrix, DataOperation)
Returns the arithmetic mean of each row or column in the specified data.
Public methodStatic memberCode exampleMean(ReadOnlyDoubleMatrix, DataOperation)
Returns the arithmetic mean of each row or column in the specified data.
Public methodStatic memberCode exampleMin(DoubleMatrix)
Returns the minimum value and the linear index of its first occurrence in the specified data.
Public methodStatic memberCode exampleMin(ReadOnlyDoubleMatrix)
Returns the minimum value and the linear index of its first occurrence in the specified data.
Public methodStatic memberCode exampleMin(DoubleMatrix, DataOperation)
Returns the smallest entries in rows or columns of the specified data.
Public methodStatic memberCode exampleMin(ReadOnlyDoubleMatrix, DataOperation)
Returns the smallest entries in rows or columns of the specified data.
Public methodStatic memberCode exampleQuantile(DoubleMatrix, DoubleMatrix)
Returns the quantiles of the given data for the specified probabilities.
Public methodStatic memberCode exampleQuantile(ReadOnlyDoubleMatrix, DoubleMatrix)
Returns the quantiles of the given data for the specified probabilities.
Public methodStatic memberCode exampleQuantile(DoubleMatrix, DoubleMatrix, DataOperation)
Returns the quantiles of rows or columns in the given data corresponding to the specified probabilities.
Public methodStatic memberCode exampleQuantile(ReadOnlyDoubleMatrix, DoubleMatrix, DataOperation)
Returns the quantiles of rows or columns in the given data corresponding to the specified probabilities.
Public methodStatic memberCode exampleSkewness(DoubleMatrix, Boolean)
Returns the skewness of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleSkewness(ReadOnlyDoubleMatrix, Boolean)
Returns the skewness of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleSkewness(DoubleMatrix, Boolean, DataOperation)
Returns the skewness of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleSkewness(ReadOnlyDoubleMatrix, Boolean, DataOperation)
Returns the skewness of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleSort(DoubleMatrix, SortDirection)
Sorts the specified data in ascending or descending order.
Public methodStatic memberCode exampleSort(ReadOnlyDoubleMatrix, SortDirection)
Sorts the specified data in ascending or descending order.
Public methodStatic memberCode exampleSortIndex(DoubleMatrix, SortDirection)
Sorts the specified data in ascending or descending order. The linear indexes of the sorted entries are similarly arranged.
Public methodStatic memberCode exampleSortIndex(ReadOnlyDoubleMatrix, SortDirection)
Sorts the specified data in ascending or descending order. The linear indexes of the sorted entries are similarly arranged.
Public methodStatic memberCode exampleStandardDeviation(DoubleMatrix, Boolean)
Returns the standard deviation of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleStandardDeviation(ReadOnlyDoubleMatrix, Boolean)
Returns the standard deviation of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleStandardDeviation(DoubleMatrix, Boolean, DataOperation)
Returns the standard deviation of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleStandardDeviation(ReadOnlyDoubleMatrix, Boolean, DataOperation)
Returns the standard deviation of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleSum(DoubleMatrix)
Returns the sum of the specified data.
Public methodStatic memberCode exampleSum(ReadOnlyDoubleMatrix)
Returns the sum of the specified data.
Public methodStatic memberCode exampleSum(DoubleMatrix, DataOperation)
Returns the sum of each row or column in the specified data.
Public methodStatic memberCode exampleSum(ReadOnlyDoubleMatrix, DataOperation)
Returns the sum of each row or column in the specified data.
Public methodStatic memberCode exampleSumOfSquaredDeviations(DoubleMatrix)
Returns the sum of squared deviations of the specified data.
Public methodStatic memberCode exampleSumOfSquaredDeviations(ReadOnlyDoubleMatrix)
Returns the sum of squared deviations of the specified data.
Public methodStatic memberCode exampleSumOfSquaredDeviations(DoubleMatrix, DataOperation)
Returns the sum of squared deviations of each row or column in the specified data.
Public methodStatic memberCode exampleSumOfSquaredDeviations(ReadOnlyDoubleMatrix, DataOperation)
Returns the sum of squared deviations of each row or column in the specified data.
Public methodStatic memberCode exampleVariance(DoubleMatrix, Boolean)
Returns the variance of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleVariance(ReadOnlyDoubleMatrix, Boolean)
Returns the variance of the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleVariance(DoubleMatrix, Boolean, DataOperation)
Returns the variance of each row or column in the specified data, eventually adjusted for bias.
Public methodStatic memberCode exampleVariance(ReadOnlyDoubleMatrix, Boolean, DataOperation)
Returns the variance of each row or column in the specified data, eventually adjusted for bias.
Top
See Also