86 Articles in this category
-
DarkLight
statistical
86 Articles in this category
-
DarkLight
AVEDEV
Given a list of numbers, calculates the average of the magnitudes of deviations of data from their mean.
Function signature
AVEDEV(values: Array) => Number
Parameter
Description
Values
List of numeric values
Exam...
Updated on : 20 May 2022
Average
Given a list of numbers, calculates their average.
Function signature
AVERAGE(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
Formula
Return value
AVERAG...
Updated on : 20 May 2022
Beta
Calculates the beta function using the specified values.
Function signature
BETA(xinput: Number, yinput: Number) => Number
Parameter
Description
X input
The X input to the Beta function
Y input
The Y input to the...
Updated on : 20 May 2022
Covar_p
Given two lists of numbers as a dataset, calculates the population covariance.
Function signature
COVAR_P(ydataset: Array, xdataset: Array) => Number
Parameter
Description
Y dataset
List of dependent data.
X datase...
Updated on : 20 May 2022
Covar
Given two lists of numbers as a dataset, calculates the sample covariance.
Function signature
COVAR(ydataset: Array, xdataset: Array) => Number
Parameter
Description
Y dataset
List of dependent data.
X dataset
Li...
Updated on : 20 May 2022
Devsq
Given a list of numbers as the sample, calculates the sum of squares of deviations.
Function signature
DEVSQ(ydataset: Array) => Number
Parameter
Description
Y dataset
List of dependent data.
Examples
numbers ...
Updated on : 20 May 2022
ERF
Calculates the integral of the Gauss error function between 0 and the given number.
Function signature
ERF(number: Number) => Number
Parameter
Description
Number
Upper boundary of the integral
Examples
Fo...
Updated on : 20 May 2022
ERFC_inv
Calculates the inverse of the ERFC function.
Function signature
ERFC_INV(number: Number) => Number
Parameter
Description
Number
Number to calculate
Examples
Formula
Return value
ERFC_INV(0)...
Updated on : 20 May 2022
Fisher_inv
Given a value, calculates its inverse Fisher transformation.
Function signature
FISHER_INV(number: Number) => Number
Parameter
Description
Number
Value to transform
Examples
Formula
Return value
...
Updated on : 20 May 2022
Fisher
Given a value, calculates its Fisher transformation.
Function signature
FISHER(number: Number) => Number
Parameter
Description
Number
Value to transform
Examples
Formula
Return value
FISHER(-...
Updated on : 20 May 2022
Gamma
Calculates the value of the Gamma function for the given input number.
Function signature
GAMMA(number: Number) => Number
Parameter
Description
Number
The input to the Gamma function
Examples
Formula
Re...
Updated on : 20 May 2022
GammaIn
Calculates the natural logarithm of the value of the Gamma function for the given input number.
Function signature
GAMMALN(number: Number) => Number
Parameter
Description
Number
The input to the Gamma function
Ex...
Updated on : 20 May 2022
Geomean
Given a list of numbers, calculates their geometric mean (average).
Function signature
GEOMEAN(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
Formula
Return value ...
Updated on : 20 May 2022
Harmean
Given a list of numbers, calculates their harmonic mean (average).
Function signature
HARMEAN(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
Formula
Return value
...
Updated on : 20 May 2022
Kurt
Given a list of numbers, calculates its kurtosis.
Function signature
KURT(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
Formula
Return value
KURT([1, 2...
Updated on : 20 May 2022
Median
Given a list of numbers, calculates their median value.
Function signature
MEDIAN(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
Formula
Return value
ME...
Updated on : 20 May 2022
Mode
Given a list of numbers, calculates their mode.
Function signature
MODE(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbers = [2,4,6]
mode2Numbers = [1,1,2,2,4,6,2,2]
...
Updated on : 20 May 2022
Percent_rank_EXC
Updated on : 20 May 2022
PHI
Calculates the value of the normal distribution for the input value, with mean 0 and a standard deviation of 1.
Function signature
PHI(input: Number) => Number
Parameter
Description
Input
The input to the PHI function
...
Updated on : 20 May 2022
Skew_p
Given a list of numbers, calculates their population skewness.
Function signature
SKEW_P(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbersSym = [1,2,3,4]
numbersNonS...
Updated on : 20 May 2022
Skew
Given a list of numbers, calculates their sample skewness.
Function signature
SKEW(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbersSym = [1,2,3,4]
numbersNonSym = [...
Updated on : 20 May 2022
Stdev_p
Given a list of numbers as a population, calculates standard deviation.
Function signature
STDEV_P(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbers = [2,4,6]
number...
Updated on : 20 May 2022
Stdev
Given a list of numbers as a sample, calculates standard deviation.
Function signature
STDEV(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbers = [2,4,6]
numbers2 = [...
Updated on : 20 May 2022
Steyx
Calculates the predicted y-values' standard errors for each x in the dataset's regression.
Function signature
STEYX(ydataset: Array, xdataset: Array) => Number
Parameter
Description
Y dataset
List of dependent data.
...
Updated on : 20 May 2022
Variance_b
Given a list of numbers, calculates the biased variance.
Function signature
VARIANCE_B(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbers = [2,4,6]
Formula ...
Updated on : 20 May 2022
Variance_p
Given a list of numbers as population, calculates the uncorrected variance.
Function signature
VARIANCE_P(values: Array) => Number
Parameter
Description
Values
List of numeric values
Examples
numbers = [2,4,6]...
Updated on : 20 May 2022