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