Altaxo.Calc.Statistics Namespace |
[Missing <summary> documentation for "N:Altaxo.Calc.Statistics"]
Classes | Class | Description |
---|
| ArrayStatistics |
Statistics operating on arrays assumed to be unsorted.
WARNING: Methods with the Inplace-suffix may modify the data array by reordering its entries.
|
| Bucket |
A Histogram consists of a series of Buckets,
each representing a region limited by a lower bound (exclusive) and an upper bound (inclusive).
|
| Correlation |
A class with correlation measures between two datasets.
|
| DescriptiveStatistics |
Computes the basic statistics of data set. The class meets the
NIST standard of accuracy for mean, variance, and standard deviation
(the only statistics they provide exact values for) and exceeds them
in increased accuracy mode.
Recommendation: consider to use RunningStatistics instead.
|
| Histogram |
A class which computes histograms of data.
|
| KernelDensity |
Kernel density estimation (KDE).
|
| MovingStatistics |
Running statistics over a window of data, allows updating by adding values.
|
| RunningStatistics |
Running statistics accumulator, allows updating by adding values
or by combining two accumulators.
|
| RunningWeightedStatistics |
Running weighted statistics accumulator, allows updating by adding values
or by combining two accumulators. Weights are reliability weights, not frequency weights.
|
| SortedArrayStatistics |
Statistics operating on an array already sorted ascendingly.
|
| Statistics |
Extension methods to return basic statistics on set of data.
|
| StreamingStatistics |
Statistics operating on an IEnumerable in a single pass, without keeping the full data in memory.
Can be used in a streaming way, e.g. on large datasets not fitting into memory.
|
| WeightedDescriptiveStatistics |
Computes the basic statistics of data set. The class meets the
NIST standard of accuracy for mean, variance, and standard deviation
(the only statistics they provide exact values for) and exceeds them
in increased accuracy mode.
Recommendation: consider to use RunningWeightedStatistics instead.
|
Enumerations