File: aggregation.go

package info (click to toggle)
golang-github-facebookgo-stats 0.0~git20151006.0.1b76add-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 108 kB
  • sloc: makefile: 2
file content (35 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package stats

import "sort"

// Average returns the average value
func Average(values []float64) float64 {
	if len(values) == 0 {
		return 0
	}

	var val float64
	for _, point := range values {
		val += point
	}
	return val / float64(len(values))
}

// Sum returns the sum of all the given values
func Sum(values []float64) float64 {
	var val float64
	for _, point := range values {
		val += point
	}
	return val
}

// Percentiles returns a map containing the asked for percentiles
func Percentiles(values []float64, percentiles map[string]float64) map[string]float64 {
	sort.Float64s(values)
	results := map[string]float64{}
	for label, p := range percentiles {
		results[label] = values[int(float64(len(values))*p)]
	}
	return results
}