StatisticType
Objects
Defines the statistics that can be computed either for a single column or for combinations of columns/column values.
Constants:
Count (StatisticType)
: Represents the number of non-null values.
Covariance (StatisticType)
: Represents the covariance between 2 columns.
FTest (StatisticType)
: Represents the F-test.
Kurtosis (StatisticType)
: Represents the kurtosis.
KurtosisStandardError (StatisticType)
: Represents the standard error of the
kurtosis.
Max (StatisticType)
: Represents the maximum value.
Mean (StatisticType)
: Represents the mean value.
MeanStandardError (StatisticType)
: Represents the standard error of the mean
value.
Median (StatisticType)
: Represents the median (middle) value.
Min (StatisticType)
: Represents the minimum value.
Mode (StatisticType)
: Represents the modal (most common) value.
Pearson (StatisticType)
: Represents the Pearson correlation between 2
columns.
Range (StatisticType)
: Represents the range value.
Skewness (StatisticType)
: Represents the skewness.
SkewnessStandardError (StatisticType)
: Represents the standard error of the
skewness.
StandardDeviation (StatisticType)
: Represents the standard deviation.
StandardErrorOfMean (StatisticType)
: Represents the standard error of the
mean.
Sum (StatisticType)
: Represents the sum of values.
TTest (StatisticType)
: Represents the t-test.
UniqueCount (StatisticType)
: Represents the number of distinct values.
ValidCount (StatisticType)
: Represents the number of valid values.
Variance (StatisticType)
: Represents the variance.
s.isPairwise() : boolean
Returns whether the statistic is only appropriate when comparing more than one value.
valueOf(name) : StatisticType
name (string)
:
values() : StatisticType[]