2456: modeTime Limit:1 SecMemory Limit:1 MBSubmit:1301Solved:569[Submit][Status]Description给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。Input第1行一个正整数n。第2行...
分类:
其他好文 时间:
2014-08-16 19:45:30
阅读次数:
208
# --*-- coding:utf-8 --*--import mathimport itertoolsdef Mean(t): """均值""" return float(sum(t)) / len(t)def E(x, p): """ 离散性随即变量的数学期望(也称为均...
分类:
其他好文 时间:
2014-07-16 20:18:01
阅读次数:
220
def Mode(t): """众数""" if not t: return None arr = __getfreq(t) if arr[0][0] == 1: return None else: for k, g in it...
分类:
其他好文 时间:
2014-07-15 00:03:24
阅读次数:
278
面向小白的统计学:描述性统计(均值,中位数,众数,方差,标准差,与常见的统计图表)集中趋势:均值,中位数,众数离散程度:极差,方差,标准差常见统计图表:直方图,概率质量函数,箱线图,茎叶图
分类:
其他好文 时间:
2014-07-14 15:39:23
阅读次数:
164