Expand description
Operations on crate::Clusters.
This attempts to implement all functionality of this module but using clusters. This turned out to be quite difficult.
Modules§
Functions§
- Convenience function for
percentilewith the 50% mark as the target andpivot_fn::rand(if thepercentile-randfeature is enabled, elsepivot_fn::middle). - Percentile by sorting.
- Same as
naive_percentilebut with a custom comparator function. - quickselect algorithm
- Same as
percentilebut with a custom comparator function. - Get the value at
targetinvalues. Uses the best method available (percentile_randif featurepercentile-randis enabled, elsepivot_fn::middle) - Same as
percentile_default_pivotbut with a custom comparator function. - percentile_
rand percentile-randConvenience function forpercentilewithpivot_fn::rand.