码迷,mamicode.com
首页 > 其他好文 > 详细

极差,方差,标准差

时间:2014-07-14 23:28:48      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   

bubuko.com,布布扣

def Var(t, mu=None):
    """方差"""
    if mu is None:
        mu = Mean(t)

    # compute the squared deviations and return their mean.
    dev2 = [(x - mu)**2 for x in t]
    var = Mean(dev2)
    return var

def StdVar(t, mu=None):
    """标准差"""
    if mu is None:
        mu = Mean(t)
    import math
    return math.sqrt(Var(t, mu))


def Range(t):
    """极差"""
    if not t:
        return None
    return max(t) - min(t)

 

极差,方差,标准差,布布扣,bubuko.com

极差,方差,标准差

标签:des   style   blog   http   color   os   

原文地址:http://www.cnblogs.com/data80386/p/3842363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!