# Functions
Calc calculates statistics for a set of values.
Merge merges a group of statistics.
SingleCountStatistics returns Statistics for a single value.
ZeroCountStatistics returns statistics when no values are present (or when all values are NaNs).
# Structs
Statistics are the computation of standard statistics (min, max, mean, count, stddev) over a group of values.
# Interfaces
MutableValues is a set of data values that can be modified.
Values presents a set of data values as an array, for the purposes of aggregation.
# Type aliases
Float64Values is a simple Values implementation around a slice.