Skip to content

Instantly share code, notes, and snippets.

View berkeleymalagon's full-sized avatar

Berkeley Malagon berkeleymalagon

View GitHub Profile
@alexalemi
alexalemi / welford.py
Created March 21, 2012 19:29
Python Welford Algorithm
import math
class Welford(object):
""" Implements Welford's algorithm for computing a running mean
and standard deviation as described at:
http://www.johndcook.com/standard_deviation.html
can take single values or iterables
Properties:
mean - returns the mean