Files
PhpSpreadsheet/tests/data/Calculation/Statistical/SKEW.php
T
Mark Baker 42e8680fc0 Statistics more unit tests (#1889)
* Additional unit tests
2021-03-02 18:01:39 +01:00

21 lines
327 B
PHP

<?php
return [
[
0.359543071407,
[3, 4, 5, 2, 3, 4, 5, 6, 4, 7],
],
[
0.863378312234,
[1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 5, 6, 7, 8],
],
[
'#VALUE!',
[1, 1, 2, 2, 2, 2, 3, 'NaN', 3, 4, 4, 5, 6, 7, 8],
],
[
'#DIV/0!',
[1, 1],
],
];