Package dev.nm.stat.descriptive
Interface Statistic
-
- All Known Implementing Classes:
Covariance,KendallRankCorrelation,Kurtosis,Max,Mean,Min,Moments,Quantile,Skewness,SpearmanRankCorrelation,SynchronizedStatistic,Variance,WeightedMean,WeightedMedian,WeightedVariance
public interface StatisticA statistic (singular) is a single measure of some attribute of a sample (e.g., its arithmetic mean value). It is calculated by applying a function (statistical algorithm) to a sample, i.e., a set of data.- See Also:
- Wikipedia: Statistic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddData(double... data)Recompute the statistic with more data, incrementally if possible.longN()Get the size of the sample.doublevalue()Get the value of the statistic.
-