# Functions
AbsDuration returns the absolute value of a duration.
Copy copies an array of float64s.
CopyDurations copies an array of time.Duration.
CopyInts copies an array of float64s.
CopySort copies and sorts an array of floats.
CopySortDurations copies and sorts an array of floats.
CopySortInts copies and sorts an array of floats.
DegreesAdd adds a delta to a base in radians.
DegreesToCompass returns the degree value in compass / clock orientation.
DegreesToRadians returns degrees as radians.
InEpsilon returns if two values are within the Epsilon of each other absolutely.
Max finds the highest value in a slice.
MaxInts finds the highest value in a slice.
Mean gets the average of a slice of numbers.
MeanDurations gets the average of a slice of numbers.
MeanInts gets the average of a slice of numbers.
Median gets the median number in a slice of numbers.
MedianSorted gets the median number in a sorted slice of numbers.
Min finds the lowest value in a slice.
MinInts finds the lowest value in a slice.
MinMax returns both the min and max in one pass.
MinMaxDurations returns both the min and max of time.Duration in one pass.
MinMaxInts returns both the min and max of ints in one pass.
Mode gets the mode of a slice of numbers `Mode` generally is the most frequently occurring values within the input set.
Normalize returns a set of numbers on the interval [0,1] for a given set of inputs.
PercentDifference computes the percentage difference between two values.
Percentile finds the relative standing in a slice of floats.
PercentileOfDuration finds the relative standing in a slice of durations.
PercentileSorted finds the relative standing in a sorted slice of floats.
PercentileSortedDurations finds the relative standing in a sorted slice of durations.
PercentToRadians converts a normalized value (0,1) to radians.
PowInt returns the base to the power.
RadianAdd adds a delta to a base in radians.
RadiansToDegrees translates a radian value to a degree value.
RoundDown rounds down to a given roundTo value.
RoundPlaces a float to a specific decimal place or precision.
RoundUp rounds up to a given roundTo value.
StdDevP finds the amount of variation from the population.
StdDevS finds the amount of variation from a sample.
Sum adds all the numbers of a slice together.
SumDurations adds all the numbers of a slice together.
SumInts adds all the numbers of a slice together.
Var finds the variance for both population and sample data.
VarP finds the amount of variance within a population.
VarS finds the amount of variance within a sample.
# Constants
Epsilon represents the minimum amount of relevant delta we care about.
# Type aliases
Durations is an array of durations.