分位数quantile

  • 中位数一般化即为分位数,表征顺序排列的一组数中,百分之多少对应的点
  • 如中位数,50%对应的点;1/4分位数,25%对应的点
def quantile(x,p):
     p_index = int(p*len(x))
     return sorted(x)[p_index]

你可能感兴趣的:(分位数quantile)