上一页 1 2 3 4 5 6 ··· 8 下一页
  2019年6月4日
摘要: 来源:《深入浅出统计学》 阅读全文
posted @ 2019-06-04 09:30 hailuo 阅读(673) 评论(0) 推荐(0) 编辑
  2019年5月28日
摘要: 来源:《深入浅出统计学》 阅读全文
posted @ 2019-05-28 14:50 hailuo 阅读(179) 评论(0) 推荐(0) 编辑
  2019年5月27日
摘要: 来源:《深入浅出统计学》 阅读全文
posted @ 2019-05-27 17:40 hailuo 阅读(11558) 评论(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 阅读(2034) 评论(0) 推荐(0) 编辑
  2019年5月22日
摘要: 来源:《深入浅出统计学》 阅读全文
posted @ 2019-05-22 17:13 hailuo 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 来源:《深入浅出统计学》 阅读全文
posted @ 2019-05-22 14:42 hailuo 阅读(655) 评论(0) 推荐(0) 编辑
  2019年5月20日
摘要: 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 阅读(7790) 评论(0) 推荐(0) 编辑
  2019年4月30日
摘要: 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 阅读(1874) 评论(0) 推荐(0) 编辑
  2019年1月14日
摘要: 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 阅读(3570) 评论(0) 推荐(0) 编辑
  2019年1月11日
摘要: 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 阅读(812) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页