会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hailuo
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
8
下一页
2019年6月4日
线性变换与独立观察的期望和方差
摘要: 来源:《深入浅出统计学》
阅读全文
posted @ 2019-06-04 09:30 hailuo
阅读(687)
评论(0)
推荐(0)
2019年5月28日
最小二乘法
摘要: 来源:《深入浅出统计学》
阅读全文
posted @ 2019-05-28 14:50 hailuo
阅读(201)
评论(0)
推荐(0)
2019年5月27日
卡方检验中自由度的计算
摘要: 来源:《深入浅出统计学》
阅读全文
posted @ 2019-05-27 17:40 hailuo
阅读(11851)
评论(0)
推荐(0)
2019年5月24日
关于置信水平,求区间的简便算法
摘要: Ps~N(p,pq/n) T分布 python t分布 interval=stats.t.interval(a,b,mean,tsem) t分布的置信区间 a:置信水平 b:检验量的自由度 mean:样本均值 tsem:均值标准差 等同于math.sqrt(var/len(x)) np.var(x1
阅读全文
posted @ 2019-05-24 17:01 hailuo
阅读(2090)
评论(0)
推荐(0)
2019年5月22日
独立观察与线性变换方差 均值计算
摘要: 来源:《深入浅出统计学》
阅读全文
posted @ 2019-05-22 17:13 hailuo
阅读(484)
评论(0)
推荐(0)
二项分布,几何分布,泊松分布
摘要: 来源:《深入浅出统计学》
阅读全文
posted @ 2019-05-22 14:42 hailuo
阅读(681)
评论(0)
推荐(0)
2019年5月20日
python numpy求四分位距
摘要: import numpy as np ages=[3,3,6,7,7,10,10,10,11,13,30] lower_q=np.quantile(ages,0.25,interpolation='lower')#下四分位数 higher_q=np.quantile(ages,0.75,interpolation='higher')#上四分位数 int_r=higher_q-lower_q#四分...
阅读全文
posted @ 2019-05-20 16:21 hailuo
阅读(7863)
评论(0)
推荐(0)
2019年4月30日
python 流式游标读取mysql大型数据库
摘要: import asyncio import aiomysql async def dbdaochu(loop): sqlstr='sql' conn = await aiomysql.connect(host, username, pwd, db, charset='utf8', ...
阅读全文
posted @ 2019-04-30 14:48 hailuo
阅读(1917)
评论(0)
推荐(0)
2019年1月14日
python pandas使用chunksize异步拆分固定行数的文件
摘要: import pandas as pd import asyncio from collections import defaultdict collect = defaultdict(list) #######创建处理一个对象的方法,并返回期物 async def dealone(chunk,sas): path='/data/chaifen/testphone_%d.txt'%sas...
阅读全文
posted @ 2019-01-14 18:12 hailuo
阅读(3619)
评论(0)
推荐(0)
2019年1月11日
python3.5+ asyncio await异步详解
摘要: import asyncio,time from collections import defaultdict from pprint import pprint collect=defaultdict(list) #######创建处理一个对象的方法,并返回期物 async def dealone(chunk): return 'Receive %d at %.5f seconds' %...
阅读全文
posted @ 2019-01-11 10:09 hailuo
阅读(825)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
8
下一页