Difference in variance calculations between Excel/Gnumeric and Open/LibreOffice (#1959)

* Difference in variance calculations between Excel/Gnumeric and Open/LibreOffice
* Simplify STDEV() function logic by remembering that STDEV() is simply the square root of VAR(), so we can simply use the VAR() calculaion rather than duplicating the basic logic... and also allow for the differences between Excel/Gnumeric and Open/LibreOffice
This commit is contained in:
Mark Baker
2021-03-27 18:31:24 +01:00
committed by GitHub
parent ec2531411d
commit a34dd71cce
30 changed files with 446 additions and 104 deletions
@@ -9,4 +9,12 @@ return [
'#DIV/0!',
['A', 'B', 'C'],
],
[
'#DIV/0!',
[true, false],
],
[
'#DIV/0!',
[true, false, 1],
],
];