Value: [1e-7 to 1e-6]
This commit is contained in:
Quinn Dougherty 2022-04-27 12:57:49 -04:00
parent a5c4cba2f0
commit a22fbb1afd
2 changed files with 2 additions and 2 deletions

View File

@ -107,4 +107,4 @@ let min = t => T.get(t)->E.A.Floats.min
let max = t => T.get(t)->E.A.Floats.max
let stdev = t => T.get(t)->E.A.Floats.stdev
let variance = t => T.get(t)->E.A.Floats.variance
let percentile = (t,f) => T.get(t)->E.A.Floats.percentile(f)
let percentile = (t, f) => T.get(t)->E.A.Floats.percentile(f)

View File

@ -555,7 +555,7 @@ module A = {
//Passing true for the exclusive parameter excludes both endpoints of the range.
//https://jstat.github.io/all.html
let percentile = (a,b) => Jstat.percentile(a,b, false)
let percentile = (a, b) => Jstat.percentile(a, b, false)
// Gives an array with all the differences between values
// diff([1,5,3,7]) = [4,-2,4]