blob: efa6e7ddc3b0c1f8f2d9726a8a3f2fce683b38cb (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* Copyright (C) 2019, Matthias Sohn <matthias.sohn@sap.com> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.util;
/**
* Simple double statistics, computed incrementally, variance and standard
* deviation using Welford's online algorithm, see
* https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm
*
* @since 5.1.9
*/
public class Stats {
private int n = 0;
private double avg = 0.0;
private double min = 0.0;
private double max = 0.0;
private double sum = 0.0;
/**
* Add a value
*
* @param x
* value
*/
public void add(double x) {
n++;
min = n == 1 ? x : Math.min(min, x);
max = n == 1 ? x : Math.max(max, x);
double d = x - avg;
avg += d / n;
sum += d * d * (n - 1) / n;
}
/**
* Returns the number of added values
*
* @return the number of added values
*/
public int count() {
return n;
}
/**
* Returns the smallest value added
*
* @return the smallest value added
*/
public double min() {
if (n < 1) {
return Double.NaN;
}
return min;
}
/**
* Returns the biggest value added
*
* @return the biggest value added
*/
public double max() {
if (n < 1) {
return Double.NaN;
}
return max;
}
/**
* Returns the average of the added values
*
* @return the average of the added values
*/
public double avg() {
if (n < 1) {
return Double.NaN;
}
return avg;
}
/**
* Returns the variance of the added values
*
* @return the variance of the added values
*/
public double var() {
if (n < 2) {
return Double.NaN;
}
return sum / (n - 1);
}
/**
* Returns the standard deviation of the added values
*
* @return the standard deviation of the added values
*/
public double stddev() {
return Math.sqrt(this.var());
}
}
|