08 2018 档案

摘要:t分布,随着自由度的增加,而逐渐接近于正态分布 从上图可以看出,当df=120时,t曲线几乎与正态分布曲线重合。 阅读全文
posted @ 2018-08-17 23:15 suonikeyinsu 阅读(409) 评论(0) 推荐(0)
摘要:T distribution 定义 在概率论和统计学中,学生t 分布(t distribution),可简称为t分布,用于根据 小样本 来估计 呈正态分布且方差未知的总体的均值。如果总体方差已知(例如在样本数量足够多时),则应该用正态分布来估计总体均值。 In probability and sta 阅读全文
posted @ 2018-08-17 15:48 suonikeyinsu 阅读(3557) 评论(0) 推荐(0)
摘要:定义引入 以之前的200,000苹果的重量为例,200,000苹果(或者更多)的重量都统计出来,不太现实。但我们可以先随机抽取100个苹果(作为一个样本),统计这100个苹果的平均重量,记为$\overline X_1$。如果只是把$\overline X_1$作为总体的平均值,肯定是不准确的,因为 阅读全文
posted @ 2018-08-15 16:49 suonikeyinsu 阅读(1566) 评论(0) 推荐(0)
摘要:matplotlib 添加注释的方式 matplotlib.pyplot.annotate Annotate the point xy with text s s : str The text of the annotation xy : iterable Length 2 sequence spe 阅读全文
posted @ 2018-08-14 11:27 suonikeyinsu 阅读(6208) 评论(0) 推荐(0)
摘要:1 #!/usr/bin/env python3 2 #-*- coding:utf-8 -*- 3 ############################################# 4 #File Name: ci_ex1.py 5 #Brief: 示例1 6 #Author: frank 7 #Email: frank0903@aliyun.com 8 #Creat... 阅读全文
posted @ 2018-08-14 09:59 suonikeyinsu 阅读(912) 评论(0) 推荐(0)
摘要:Confidence interval(置信区间) confidence interval (CI) is a type of interval estimate, computed from the statistics of the observed data, that might conta 阅读全文
posted @ 2018-08-12 21:35 suonikeyinsu 阅读(3651) 评论(0) 推荐(0)
摘要:在 "小马哥课堂 统计学 中心极限定理" 一节的例子中提到一个标准误差的概念,有同学对此不清楚,所以这里单独写一节,来对standard error进行阐述,希望能大家能有一个直观的理解。 Standard error(标准误差) The standard error (SE) of a stati 阅读全文
posted @ 2018-08-09 20:54 suonikeyinsu 阅读(2656) 评论(0) 推荐(0)
摘要:Central limit theorem(中心极限定理) the central limit theorem (CLT) establishes that, in some situations, when independent random variables are added, their 阅读全文
posted @ 2018-08-09 09:21 suonikeyinsu 阅读(1062) 评论(0) 推荐(0)
摘要:histogram A histogram is an accurate representation of the distribution of numerical data. It is an estimate of the probability distribution of a cont 阅读全文
posted @ 2018-08-09 09:14 suonikeyinsu 阅读(1778) 评论(0) 推荐(0)
摘要:Law of large numbers(大数定理) the law of large numbers (LLN) is a theorem that describes the result of performing the same experiment a large number of t 阅读全文
posted @ 2018-08-07 23:14 suonikeyinsu 阅读(374) 评论(0) 推荐(0)
摘要:Standard score(z 分数) The standard score is the signed number of standard deviations by which the value of an observation or data point differs from th 阅读全文
posted @ 2018-08-07 11:29 suonikeyinsu 阅读(1034) 评论(0) 推荐(0)
摘要:Variance(方差) 衡量随机变量或一组数据的 离中 的离散程度 引入例子 假设有两组总体:A={2,2,3,3}, B={0,0,5,5} $$\mu_A=\frac {2+2+3+3}{4}=2.5$$ $$\mu_B=\frac{0+0+5+5}{4}=2.5$$ 显然,$\mu$并不能反 阅读全文
posted @ 2018-08-06 16:07 suonikeyinsu 阅读(1367) 评论(0) 推荐(0)
摘要:keytool and jks keytool Name keytool Key and Certificate Management Tool Manages a keystore (database) of cryptographic keys, X.509 certificate chains 阅读全文
posted @ 2018-08-04 16:58 suonikeyinsu 阅读(433) 评论(0) 推荐(0)
摘要:期望 前导 假设,盒子里面有n个球,每个球贴上了一个标签,标签上的数字是1 8;那么,从盒子中任取10个球,每次取球的过程相互独立。 1,2,3,4,5,5,7,7,7,8 总共10个数 $$\displaystyle \begin{array}{rcl} mean &=& \frac {1+2+3 阅读全文
posted @ 2018-08-03 21:59 suonikeyinsu 阅读(1403) 评论(0) 推荐(0)