Extract Poisson distribution into its own class (#1953)

This commit is contained in:
Mark Baker
2021-03-26 09:08:23 +01:00
committed by GitHub
parent f51c19c125
commit c380b25d3c
11 changed files with 138 additions and 88 deletions
+14 -2
View File
@@ -18,11 +18,23 @@ return [
35, 40, true,
],
[
'#NUM!',
35, -40, true,
'#VALUE!',
'Nan', 40, true,
],
[
'#VALUE!',
35, 'Nan', true,
],
[
'#VALUE!',
35, 40, 'Nan',
],
'Value < 0' => [
'#NUM!',
-35, 40, true,
],
'Mean < 0' => [
'#NUM!',
35, -40, true,
],
];