You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've implemented sampling from the order statistics of an arbitrary sampleable. Are you interested in merging this kind of functionality into Distributions.jl?
The k-th order statistic is the k-th smallest value out of n (n >= k) variables. I'm using order statistics to model latency in distributed computing (the overall latency is the n-th order statistic of the latency of the n workers). Finding the distribution of the order statistics is often non-trivial. An implementation like this is a useful fallback.
Hello,
I've implemented sampling from the order statistics of an arbitrary sampleable. Are you interested in merging this kind of functionality into Distributions.jl?
The
k
-th order statistic is thek
-th smallest value out ofn
(n >= k
) variables. I'm using order statistics to model latency in distributed computing (the overall latency is then
-th order statistic of the latency of then
workers). Finding the distribution of the order statistics is often non-trivial. An implementation like this is a useful fallback.I'm attaching a prototype implementation.
The text was updated successfully, but these errors were encountered: