system.math
Math Functions
The following functions assist with running statistical analysis.
📄️ geometricMean
Calculates the geometric mean.
📄️ kurtosis
Calculates the kurtosis of a sequence of values.
📄️ max
Given a sequence of values, returns the greatest value in the sequence, also known as the "max" value.
📄️ mean
Given a sequence of values, calculates the arithmetic mean (average).
📄️ meanDifference
Given two sequences of values, calculates the mean of the signed difference between both sequences.
📄️ median
Takes a sequence of values, and returns the median.
📄️ min
Given a sequence of numerical values, returns the minimum value, also known as the "min" value.
📄️ mode
Given a sequence of values, returns the 'mode', or most frequent values.
📄️ normalize
Given a sequence of values, normalizes the values.
📄️ percentile
Given a sequence of numerical values, estimates the percentile of input.
📄️ populationVariance
Given a sequence of values, returns the population variance.
📄️ product
Given a sequence of values, calculates the product of the sequence.
📄️ skewness
Given a sequence of values, calculates the skewness (third central moment).
📄️ standardDeviation
Given a sequence of numerical values, calculates the simple standard deviation.
📄️ sum
Given a sequence of values, calculates the sum of all values.
📄️ sumDifference
Given two sequences of values, calculates the sum of the signed difference between both sequences.
📄️ sumLog
Given a sequence of values, calculates the sum of the natural logs.
📄️ sumSquares
Given a sequence of values, calculates the sum of the squares of all values.
📄️ variance
Given a sequence of values, calculates the variance of all values.