2a393fc40800e700c8ae5d076b4df2d35dc332be
[nepi.git] / src / nepi / util / statfuncs.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License version 2 as
7 #    published by the Free Software Foundation;
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
18
19 import math
20 import numpy
21 from scipy import stats
22
23 def compute_mean(sample):
24     # TODO: Discard outliers !!!!
25
26     if not sample:
27         print " CANNOT COMPUTE STATS for ", sample
28         return (0, 0, 0, 0)
29
30     x = numpy.array(sample)
31
32     # sample mean and standard deviation
33     n, min_max, mean, var, skew, kurt = stats.describe(x)
34     std = math.sqrt(var)
35
36     # for the population mean and std ...
37     # mean = x.mean()
38     # std = x.std()
39     
40     # Calculate confidence interval t-distribution
41     ## BUG: Use quantil of NORMAL distribution, not t-student quantil distribution
42     ci = stats.t.interval(0.95, n-1, loc = mean, scale = std/math.sqrt(n))
43
44     return (mean, std, ci[0], ci[1])
45