new f()
- Source
Methods
(static) dist(x, deg_freedom1, deg_freedom2, cumulative) → {number}
Returns the F probability distribution.
Name | Type | Description |
---|---|---|
x | number | The value at which to evaluate the function. |
deg_freedom1 | number | The numerator degrees of freedom. |
deg_freedom2 | number | The denominator degrees of freedom. |
cumulative | boolean | A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function. |
- Source
the F probability distribution or an error if the arguments are incorrect.
- Type:
- number
(static) inv(probability, deg_freedom1, deg_freedom2) → {number}
Returns the inverse of the F probability distribution.
Name | Type | Description |
---|---|---|
probability | number | A probability associated with the F cumulative distribution. |
deg_freedom1 | number | The numerator degrees of freedom. |
deg_freedom2 | number | The denominator degrees of freedom. |
- Source
the inverse of the F probability distribution or an error if the arguments are incorrect.
- Type:
- number
(static) test(array1, array2) → {number}
Returns the result of an F-test.
Name | Type | Description |
---|---|---|
array1 | number | The first array or range of data. |
array2 | number | The second array or range of data. |
- Source
the result of an F test or an error if the arguments are incorrect.
- Type:
- number