Files
PhpSpreadsheet/tests/data/Calculation/Statistical/GAMMAINV.php
Mark Baker f51c19c125 First steps toward refactoring Excel's Statistical Distributions (#1949)
* First steps toward refactoring Statistical Distributions into smaller classes: BETA() and GAMMA() (and related functions) to start with... they all need a lot of tidying up, and more testing; but it's a start

* Add basic datatype validations to Beta and Gamma Excel function implementations
* Switch to using a trait with the validation methods to provide easier sharing between distribution classes
* Additional unit tests for Beta and Gamma functions, including unhappy path for validations

* Extract ChiSquared functions
* Additional argument validation checks with unit tests for Chi Squared functions

* Extract Fisher

* Move MEDIAN() and MODE() to the Averages class
* Extract filters for Median and Mode for common usage
2021-03-25 20:54:55 +01:00

49 lines
698 B
PHP

<?php
return [
[
10.0000111914377,
0.068094, 9, 2,
],
[
5.348120627447,
0.5, 3, 2,
],
[
'#VALUE!',
'NaN', 3, 2,
],
[
'#VALUE!',
0.5, 'NaN', 2,
],
[
'#VALUE!',
0.5, 3, 'NaN',
],
'Probability < 0' => [
'#NUM!',
-0.5, 3, 2,
],
'Probability > 1' => [
'#NUM!',
1.5, 3, 2,
],
'Alpha < 0' => [
'#NUM!',
0.5, -3, 2,
],
'Alpha = 0' => [
'#NUM!',
0.5, 0, 2,
],
'Beta < 0' => [
'#NUM!',
0.5, 3, -2,
],
'Beta = 0' => [
'#NUM!',
0.5, 3, 0,
],
];