statistics.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. ## Module statistics.py
  2. ##
  3. ## Copyright (c) 2013 Steven D'Aprano <steve+python@pearwood.info>.
  4. ##
  5. ## Licensed under the Apache License, Version 2.0 (the "License");
  6. ## you may not use this file except in compliance with the License.
  7. ## You may obtain a copy of the License at
  8. ##
  9. ## http://www.apache.org/licenses/LICENSE-2.0
  10. ##
  11. ## Unless required by applicable law or agreed to in writing, software
  12. ## distributed under the License is distributed on an "AS IS" BASIS,
  13. ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ## See the License for the specific language governing permissions and
  15. ## limitations under the License.
  16. """
  17. Basic statistics module.
  18. This module provides functions for calculating statistics of data, including
  19. averages, variance, and standard deviation.
  20. Calculating averages
  21. --------------------
  22. ================== =============================================
  23. Function Description
  24. ================== =============================================
  25. mean Arithmetic mean (average) of data.
  26. median Median (middle value) of data.
  27. median_low Low median of data.
  28. median_high High median of data.
  29. median_grouped Median, or 50th percentile, of grouped data.
  30. mode Mode (most common value) of data.
  31. ================== =============================================
  32. Calculate the arithmetic mean ("the average") of data:
  33. >>> mean([-1.0, 2.5, 3.25, 5.75])
  34. 2.625
  35. Calculate the standard median of discrete data:
  36. >>> median([2, 3, 4, 5])
  37. 3.5
  38. Calculate the median, or 50th percentile, of data grouped into class intervals
  39. centred on the data values provided. E.g. if your data points are rounded to
  40. the nearest whole number:
  41. >>> median_grouped([2, 2, 3, 3, 3, 4]) #doctest: +ELLIPSIS
  42. 2.8333333333...
  43. This should be interpreted in this way: you have two data points in the class
  44. interval 1.5-2.5, three data points in the class interval 2.5-3.5, and one in
  45. the class interval 3.5-4.5. The median of these data points is 2.8333...
  46. Calculating variability or spread
  47. ---------------------------------
  48. ================== =============================================
  49. Function Description
  50. ================== =============================================
  51. pvariance Population variance of data.
  52. variance Sample variance of data.
  53. pstdev Population standard deviation of data.
  54. stdev Sample standard deviation of data.
  55. ================== =============================================
  56. Calculate the standard deviation of sample data:
  57. >>> stdev([2.5, 3.25, 5.5, 11.25, 11.75]) #doctest: +ELLIPSIS
  58. 4.38961843444...
  59. If you have previously calculated the mean, you can pass it as the optional
  60. second argument to the four "spread" functions to avoid recalculating it:
  61. >>> data = [1, 2, 2, 4, 4, 4, 5, 6]
  62. >>> mu = mean(data)
  63. >>> pvariance(data, mu)
  64. 2.5
  65. Exceptions
  66. ----------
  67. A single exception is defined: StatisticsError is a subclass of ValueError.
  68. """
  69. __all__ = [ 'StatisticsError',
  70. 'pstdev', 'pvariance', 'stdev', 'variance',
  71. 'median', 'median_low', 'median_high', 'median_grouped',
  72. 'mean', 'mode',
  73. ]
  74. import collections
  75. import math
  76. from fractions import Fraction
  77. from decimal import Decimal
  78. from itertools import groupby
  79. # === Exceptions ===
  80. class StatisticsError(ValueError):
  81. pass
  82. # === Private utilities ===
  83. def _sum(data, start=0):
  84. """_sum(data [, start]) -> (type, sum, count)
  85. Return a high-precision sum of the given numeric data as a fraction,
  86. together with the type to be converted to and the count of items.
  87. If optional argument ``start`` is given, it is added to the total.
  88. If ``data`` is empty, ``start`` (defaulting to 0) is returned.
  89. Examples
  90. --------
  91. >>> _sum([3, 2.25, 4.5, -0.5, 1.0], 0.75)
  92. (<class 'float'>, Fraction(11, 1), 5)
  93. Some sources of round-off error will be avoided:
  94. >>> _sum([1e50, 1, -1e50] * 1000) # Built-in sum returns zero.
  95. (<class 'float'>, Fraction(1000, 1), 3000)
  96. Fractions and Decimals are also supported:
  97. >>> from fractions import Fraction as F
  98. >>> _sum([F(2, 3), F(7, 5), F(1, 4), F(5, 6)])
  99. (<class 'fractions.Fraction'>, Fraction(63, 20), 4)
  100. >>> from decimal import Decimal as D
  101. >>> data = [D("0.1375"), D("0.2108"), D("0.3061"), D("0.0419")]
  102. >>> _sum(data)
  103. (<class 'decimal.Decimal'>, Fraction(6963, 10000), 4)
  104. Mixed types are currently treated as an error, except that int is
  105. allowed.
  106. """
  107. count = 0
  108. n, d = _exact_ratio(start)
  109. partials = {d: n}
  110. partials_get = partials.get
  111. T = _coerce(int, type(start))
  112. for typ, values in groupby(data, type):
  113. T = _coerce(T, typ) # or raise TypeError
  114. for n,d in map(_exact_ratio, values):
  115. count += 1
  116. partials[d] = partials_get(d, 0) + n
  117. if None in partials:
  118. # The sum will be a NAN or INF. We can ignore all the finite
  119. # partials, and just look at this special one.
  120. total = partials[None]
  121. assert not _isfinite(total)
  122. else:
  123. # Sum all the partial sums using builtin sum.
  124. # FIXME is this faster if we sum them in order of the denominator?
  125. total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
  126. return (T, total, count)
  127. def _isfinite(x):
  128. try:
  129. return x.is_finite() # Likely a Decimal.
  130. except AttributeError:
  131. return math.isfinite(x) # Coerces to float first.
  132. def _coerce(T, S):
  133. """Coerce types T and S to a common type, or raise TypeError.
  134. Coercion rules are currently an implementation detail. See the CoerceTest
  135. test class in test_statistics for details.
  136. """
  137. # See http://bugs.python.org/issue24068.
  138. assert T is not bool, "initial type T is bool"
  139. # If the types are the same, no need to coerce anything. Put this
  140. # first, so that the usual case (no coercion needed) happens as soon
  141. # as possible.
  142. if T is S: return T
  143. # Mixed int & other coerce to the other type.
  144. if S is int or S is bool: return T
  145. if T is int: return S
  146. # If one is a (strict) subclass of the other, coerce to the subclass.
  147. if issubclass(S, T): return S
  148. if issubclass(T, S): return T
  149. # Ints coerce to the other type.
  150. if issubclass(T, int): return S
  151. if issubclass(S, int): return T
  152. # Mixed fraction & float coerces to float (or float subclass).
  153. if issubclass(T, Fraction) and issubclass(S, float):
  154. return S
  155. if issubclass(T, float) and issubclass(S, Fraction):
  156. return T
  157. # Any other combination is disallowed.
  158. msg = "don't know how to coerce %s and %s"
  159. raise TypeError(msg % (T.__name__, S.__name__))
  160. def _exact_ratio(x):
  161. """Return Real number x to exact (numerator, denominator) pair.
  162. >>> _exact_ratio(0.25)
  163. (1, 4)
  164. x is expected to be an int, Fraction, Decimal or float.
  165. """
  166. try:
  167. # Optimise the common case of floats. We expect that the most often
  168. # used numeric type will be builtin floats, so try to make this as
  169. # fast as possible.
  170. if type(x) is float:
  171. return x.as_integer_ratio()
  172. try:
  173. # x may be an int, Fraction, or Integral ABC.
  174. return (x.numerator, x.denominator)
  175. except AttributeError:
  176. try:
  177. # x may be a float subclass.
  178. return x.as_integer_ratio()
  179. except AttributeError:
  180. try:
  181. # x may be a Decimal.
  182. return _decimal_to_ratio(x)
  183. except AttributeError:
  184. # Just give up?
  185. pass
  186. except (OverflowError, ValueError):
  187. # float NAN or INF.
  188. assert not math.isfinite(x)
  189. return (x, None)
  190. msg = "can't convert type '{}' to numerator/denominator"
  191. raise TypeError(msg.format(type(x).__name__))
  192. # FIXME This is faster than Fraction.from_decimal, but still too slow.
  193. def _decimal_to_ratio(d):
  194. """Convert Decimal d to exact integer ratio (numerator, denominator).
  195. >>> from decimal import Decimal
  196. >>> _decimal_to_ratio(Decimal("2.6"))
  197. (26, 10)
  198. """
  199. sign, digits, exp = d.as_tuple()
  200. if exp in ('F', 'n', 'N'): # INF, NAN, sNAN
  201. assert not d.is_finite()
  202. return (d, None)
  203. num = 0
  204. for digit in digits:
  205. num = num*10 + digit
  206. if exp < 0:
  207. den = 10**-exp
  208. else:
  209. num *= 10**exp
  210. den = 1
  211. if sign:
  212. num = -num
  213. return (num, den)
  214. def _convert(value, T):
  215. """Convert value to given numeric type T."""
  216. if type(value) is T:
  217. # This covers the cases where T is Fraction, or where value is
  218. # a NAN or INF (Decimal or float).
  219. return value
  220. if issubclass(T, int) and value.denominator != 1:
  221. T = float
  222. try:
  223. # FIXME: what do we do if this overflows?
  224. return T(value)
  225. except TypeError:
  226. if issubclass(T, Decimal):
  227. return T(value.numerator)/T(value.denominator)
  228. else:
  229. raise
  230. def _counts(data):
  231. # Generate a table of sorted (value, frequency) pairs.
  232. table = collections.Counter(iter(data)).most_common()
  233. if not table:
  234. return table
  235. # Extract the values with the highest frequency.
  236. maxfreq = table[0][1]
  237. for i in range(1, len(table)):
  238. if table[i][1] != maxfreq:
  239. table = table[:i]
  240. break
  241. return table
  242. # === Measures of central tendency (averages) ===
  243. def mean(data):
  244. """Return the sample arithmetic mean of data.
  245. >>> mean([1, 2, 3, 4, 4])
  246. 2.8
  247. >>> from fractions import Fraction as F
  248. >>> mean([F(3, 7), F(1, 21), F(5, 3), F(1, 3)])
  249. Fraction(13, 21)
  250. >>> from decimal import Decimal as D
  251. >>> mean([D("0.5"), D("0.75"), D("0.625"), D("0.375")])
  252. Decimal('0.5625')
  253. If ``data`` is empty, StatisticsError will be raised.
  254. """
  255. if iter(data) is data:
  256. data = list(data)
  257. n = len(data)
  258. if n < 1:
  259. raise StatisticsError('mean requires at least one data point')
  260. T, total, count = _sum(data)
  261. assert count == n
  262. return _convert(total/n, T)
  263. # FIXME: investigate ways to calculate medians without sorting? Quickselect?
  264. def median(data):
  265. """Return the median (middle value) of numeric data.
  266. When the number of data points is odd, return the middle data point.
  267. When the number of data points is even, the median is interpolated by
  268. taking the average of the two middle values:
  269. >>> median([1, 3, 5])
  270. 3
  271. >>> median([1, 3, 5, 7])
  272. 4.0
  273. """
  274. data = sorted(data)
  275. n = len(data)
  276. if n == 0:
  277. raise StatisticsError("no median for empty data")
  278. if n%2 == 1:
  279. return data[n//2]
  280. else:
  281. i = n//2
  282. return (data[i - 1] + data[i])/2
  283. def median_low(data):
  284. """Return the low median of numeric data.
  285. When the number of data points is odd, the middle value is returned.
  286. When it is even, the smaller of the two middle values is returned.
  287. >>> median_low([1, 3, 5])
  288. 3
  289. >>> median_low([1, 3, 5, 7])
  290. 3
  291. """
  292. data = sorted(data)
  293. n = len(data)
  294. if n == 0:
  295. raise StatisticsError("no median for empty data")
  296. if n%2 == 1:
  297. return data[n//2]
  298. else:
  299. return data[n//2 - 1]
  300. def median_high(data):
  301. """Return the high median of data.
  302. When the number of data points is odd, the middle value is returned.
  303. When it is even, the larger of the two middle values is returned.
  304. >>> median_high([1, 3, 5])
  305. 3
  306. >>> median_high([1, 3, 5, 7])
  307. 5
  308. """
  309. data = sorted(data)
  310. n = len(data)
  311. if n == 0:
  312. raise StatisticsError("no median for empty data")
  313. return data[n//2]
  314. def median_grouped(data, interval=1):
  315. """Return the 50th percentile (median) of grouped continuous data.
  316. >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5])
  317. 3.7
  318. >>> median_grouped([52, 52, 53, 54])
  319. 52.5
  320. This calculates the median as the 50th percentile, and should be
  321. used when your data is continuous and grouped. In the above example,
  322. the values 1, 2, 3, etc. actually represent the midpoint of classes
  323. 0.5-1.5, 1.5-2.5, 2.5-3.5, etc. The middle value falls somewhere in
  324. class 3.5-4.5, and interpolation is used to estimate it.
  325. Optional argument ``interval`` represents the class interval, and
  326. defaults to 1. Changing the class interval naturally will change the
  327. interpolated 50th percentile value:
  328. >>> median_grouped([1, 3, 3, 5, 7], interval=1)
  329. 3.25
  330. >>> median_grouped([1, 3, 3, 5, 7], interval=2)
  331. 3.5
  332. This function does not check whether the data points are at least
  333. ``interval`` apart.
  334. """
  335. data = sorted(data)
  336. n = len(data)
  337. if n == 0:
  338. raise StatisticsError("no median for empty data")
  339. elif n == 1:
  340. return data[0]
  341. # Find the value at the midpoint. Remember this corresponds to the
  342. # centre of the class interval.
  343. x = data[n//2]
  344. for obj in (x, interval):
  345. if isinstance(obj, (str, bytes)):
  346. raise TypeError('expected number but got %r' % obj)
  347. try:
  348. L = x - interval/2 # The lower limit of the median interval.
  349. except TypeError:
  350. # Mixed type. For now we just coerce to float.
  351. L = float(x) - float(interval)/2
  352. cf = data.index(x) # Number of values below the median interval.
  353. # FIXME The following line could be more efficient for big lists.
  354. f = data.count(x) # Number of data points in the median interval.
  355. return L + interval*(n/2 - cf)/f
  356. def mode(data):
  357. """Return the most common data point from discrete or nominal data.
  358. ``mode`` assumes discrete data, and returns a single value. This is the
  359. standard treatment of the mode as commonly taught in schools:
  360. >>> mode([1, 1, 2, 3, 3, 3, 3, 4])
  361. 3
  362. This also works with nominal (non-numeric) data:
  363. >>> mode(["red", "blue", "blue", "red", "green", "red", "red"])
  364. 'red'
  365. If there is not exactly one most common value, ``mode`` will raise
  366. StatisticsError.
  367. """
  368. # Generate a table of sorted (value, frequency) pairs.
  369. table = _counts(data)
  370. if len(table) == 1:
  371. return table[0][0]
  372. elif table:
  373. raise StatisticsError(
  374. 'no unique mode; found %d equally common values' % len(table)
  375. )
  376. else:
  377. raise StatisticsError('no mode for empty data')
  378. # === Measures of spread ===
  379. # See http://mathworld.wolfram.com/Variance.html
  380. # http://mathworld.wolfram.com/SampleVariance.html
  381. # http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
  382. #
  383. # Under no circumstances use the so-called "computational formula for
  384. # variance", as that is only suitable for hand calculations with a small
  385. # amount of low-precision data. It has terrible numeric properties.
  386. #
  387. # See a comparison of three computational methods here:
  388. # http://www.johndcook.com/blog/2008/09/26/comparing-three-methods-of-computing-standard-deviation/
  389. def _ss(data, c=None):
  390. """Return sum of square deviations of sequence data.
  391. If ``c`` is None, the mean is calculated in one pass, and the deviations
  392. from the mean are calculated in a second pass. Otherwise, deviations are
  393. calculated from ``c`` as given. Use the second case with care, as it can
  394. lead to garbage results.
  395. """
  396. if c is None:
  397. c = mean(data)
  398. T, total, count = _sum((x-c)**2 for x in data)
  399. # The following sum should mathematically equal zero, but due to rounding
  400. # error may not.
  401. U, total2, count2 = _sum((x-c) for x in data)
  402. assert T == U and count == count2
  403. total -= total2**2/len(data)
  404. assert not total < 0, 'negative sum of square deviations: %f' % total
  405. return (T, total)
  406. def variance(data, xbar=None):
  407. """Return the sample variance of data.
  408. data should be an iterable of Real-valued numbers, with at least two
  409. values. The optional argument xbar, if given, should be the mean of
  410. the data. If it is missing or None, the mean is automatically calculated.
  411. Use this function when your data is a sample from a population. To
  412. calculate the variance from the entire population, see ``pvariance``.
  413. Examples:
  414. >>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]
  415. >>> variance(data)
  416. 1.3720238095238095
  417. If you have already calculated the mean of your data, you can pass it as
  418. the optional second argument ``xbar`` to avoid recalculating it:
  419. >>> m = mean(data)
  420. >>> variance(data, m)
  421. 1.3720238095238095
  422. This function does not check that ``xbar`` is actually the mean of
  423. ``data``. Giving arbitrary values for ``xbar`` may lead to invalid or
  424. impossible results.
  425. Decimals and Fractions are supported:
  426. >>> from decimal import Decimal as D
  427. >>> variance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
  428. Decimal('31.01875')
  429. >>> from fractions import Fraction as F
  430. >>> variance([F(1, 6), F(1, 2), F(5, 3)])
  431. Fraction(67, 108)
  432. """
  433. if iter(data) is data:
  434. data = list(data)
  435. n = len(data)
  436. if n < 2:
  437. raise StatisticsError('variance requires at least two data points')
  438. T, ss = _ss(data, xbar)
  439. return _convert(ss/(n-1), T)
  440. def pvariance(data, mu=None):
  441. """Return the population variance of ``data``.
  442. data should be an iterable of Real-valued numbers, with at least one
  443. value. The optional argument mu, if given, should be the mean of
  444. the data. If it is missing or None, the mean is automatically calculated.
  445. Use this function to calculate the variance from the entire population.
  446. To estimate the variance from a sample, the ``variance`` function is
  447. usually a better choice.
  448. Examples:
  449. >>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25]
  450. >>> pvariance(data)
  451. 1.25
  452. If you have already calculated the mean of the data, you can pass it as
  453. the optional second argument to avoid recalculating it:
  454. >>> mu = mean(data)
  455. >>> pvariance(data, mu)
  456. 1.25
  457. This function does not check that ``mu`` is actually the mean of ``data``.
  458. Giving arbitrary values for ``mu`` may lead to invalid or impossible
  459. results.
  460. Decimals and Fractions are supported:
  461. >>> from decimal import Decimal as D
  462. >>> pvariance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
  463. Decimal('24.815')
  464. >>> from fractions import Fraction as F
  465. >>> pvariance([F(1, 4), F(5, 4), F(1, 2)])
  466. Fraction(13, 72)
  467. """
  468. if iter(data) is data:
  469. data = list(data)
  470. n = len(data)
  471. if n < 1:
  472. raise StatisticsError('pvariance requires at least one data point')
  473. T, ss = _ss(data, mu)
  474. return _convert(ss/n, T)
  475. def stdev(data, xbar=None):
  476. """Return the square root of the sample variance.
  477. See ``variance`` for arguments and other details.
  478. >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
  479. 1.0810874155219827
  480. """
  481. var = variance(data, xbar)
  482. try:
  483. return var.sqrt()
  484. except AttributeError:
  485. return math.sqrt(var)
  486. def pstdev(data, mu=None):
  487. """Return the square root of the population variance.
  488. See ``pvariance`` for arguments and other details.
  489. >>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
  490. 0.986893273527251
  491. """
  492. var = pvariance(data, mu)
  493. try:
  494. return var.sqrt()
  495. except AttributeError:
  496. return math.sqrt(var)