Files
PhpSpreadsheet/tests/data/Calculation/Statistical/PERMUTATIONA.php
Mark Baker 1c92b7611a Extract Percentile-type functions from Statistics (#1966)
* Extract Percentile-type functions from Statistics (e.g. PERCENTILE(), PERCENTRANK(), QUARTILE(), and RANK())
* Unit test for PERCENTILE() with an empty (of numbers) dataset
2021-03-29 12:59:46 +02:00

37 lines
371 B
PHP

<?php
return [
[
5,
5, 1,
],
[
2,
2.2, 1.1,
],
[
5,
5.1, 1.9,
],
[
1,
1, 2,
],
[
'#NUM!',
-1, 2,
],
[
'#NUM!',
1, -2,
],
[
'#VALUE!',
'NaN', 31,
],
[
'#VALUE!',
49, 'NaN',
],
];