lint
Value: [1e-7 to 1e-6]
This commit is contained in:
parent
a5c4cba2f0
commit
a22fbb1afd
|
@ -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 max = t => T.get(t)->E.A.Floats.max
|
||||||
let stdev = t => T.get(t)->E.A.Floats.stdev
|
let stdev = t => T.get(t)->E.A.Floats.stdev
|
||||||
let variance = t => T.get(t)->E.A.Floats.variance
|
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)
|
||||||
|
|
|
@ -555,7 +555,7 @@ module A = {
|
||||||
|
|
||||||
//Passing true for the exclusive parameter excludes both endpoints of the range.
|
//Passing true for the exclusive parameter excludes both endpoints of the range.
|
||||||
//https://jstat.github.io/all.html
|
//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
|
// Gives an array with all the differences between values
|
||||||
// diff([1,5,3,7]) = [4,-2,4]
|
// diff([1,5,3,7]) = [4,-2,4]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user