会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
data80386
博客园
首页
新随笔
联系
订阅
管理
2014年8月1日
消息队列
摘要: http://blog.csdn.net/chenjiebin/article/details/8253433http://www.01happy.com/ubuntu-rabbitmq-and-python-practice/__author__ = 'root'# --*-- coding:ut...
阅读全文
posted @ 2014-08-01 11:20 data80386
阅读(89)
评论(0)
推荐(0)
2014年7月29日
github
摘要: http://www.07net01.com/linux/GitHubshiyong_yi____shengchengbendixiangmubingshangchuan_560271_1376359104.html
阅读全文
posted @ 2014-07-29 09:07 data80386
阅读(87)
评论(0)
推荐(0)
2014年7月14日
极差,方差,标准差
摘要: def Var(t, mu=None): """方差""" if mu is None: mu = Mean(t) # compute the squared deviations and return their mean. dev2 = [(x - mu)*...
阅读全文
posted @ 2014-07-14 11:34 data80386
阅读(364)
评论(0)
推荐(0)
统计学基础知识索引
摘要: 面向小白的统计学:描述性统计(均值,中位数,众数,方差,标准差,与常见的统计图表)集中趋势:均值,中位数,众数离散程度:极差,方差,标准差常见统计图表:直方图,概率质量函数,箱线图,茎叶图赌博设计:概率的基本概念,古典概型
阅读全文
posted @ 2014-07-14 11:23 data80386
阅读(216)
评论(0)
推荐(0)
众数定义及示例
摘要: def Mode(t): """众数""" if not t: return None arr = __getfreq(t) if arr[0][0] == 1: return None else: for k, g in it...
阅读全文
posted @ 2014-07-14 10:44 data80386
阅读(795)
评论(0)
推荐(0)
中位数定义及示例
摘要: def Median(t): """中位数""" arr = sorted(t) idx = (len(arr) - 1) / 2 if type(idx) is int: return arr[idx] if type(idx) is float: ...
阅读全文
posted @ 2014-07-14 10:43 data80386
阅读(623)
评论(0)
推荐(0)
均值定义及实例
摘要: def Mean(t): """均值""" return float(sum(t)) / len(t)
阅读全文
posted @ 2014-07-14 10:41 data80386
阅读(210)
评论(0)
推荐(0)
2014年7月11日
基本概念: 均值,期望,中位数,众数,极差,总体方差,样本方差,协方差
摘要: # --*-- coding:utf-8 --*--import mathimport itertoolsdef Mean(t): """均值""" return float(sum(t)) / len(t)def E(x, p): """ 离散性随即变量的数学期望(也称为均...
阅读全文
posted @ 2014-07-11 01:48 data80386
阅读(1892)
评论(0)
推荐(0)
公告