Philip Tellis

Results 92 comments of Philip Tellis

I am ok with it being an optional parameter, but by definition, percentiles should not use interpolation. A percentile is required to be a point within the dataset. The only...

The buckets will actually work fine if you specify your own buckets with negative thresholds. The minimum is actually `-Infinity` The actual problem you'll face is with the calculations for...

mean and standard deviation will work. geometric mean and geometric standard deviation will not work.

If you want to fix it with method 3, the bug is in lines 131 & 132 of faststats.js: https://github.com/bluesmoon/node-faststats/blob/master/faststats.js#L131-L132 where the sign would have to be flipped. Geometric stats...

I'll look into it.

Maybe this way so it's defined at compile time: ```julia if isdefined(Base, :hasproperty) # Julia 1.2 function haskey(o::PyObject, s::Union{Symbol,AbstractString}) Base.depwarn("`haskey(o::PyObject, s::Union{Symbol, AbstractString})` is deprecated, use `hasproperty(o, s)` instead.", :haskey) return...

But `async` is not the same as `non-blocking`. I want a way to say that this a module should be non-blocking.

I don't understand. Are you saying that the fetching process is guaranteed to never block the `window.onload` event? If so, then this is not always desired behaviour. Some resources may...

got it. so all I'm asking for is that the specification include `non-blocking` as a loader attribute, and the loader instance can decide whether to implement it or not. That...