@mShuaiZhao
2018-02-03T13:10:43.000000Z
字数 1729
阅读 512
Coursera
2018.01
normal distribution
- standard deviation
68 - 95 - 99.7% rule
3原则
practice
standardizing with Z scores
standardized(Z) score
Z-score 的均值为0
不寻常的observation
percentiles
percentile is the percentage of observations that fall below a given data point
computing percentiles - using R
值为-1及以下的概率(percentiles)
pnorm(-1, mean = 0, sd = 1)
[1] 0.1586553
当概率分布是正态分布时,Z-score和percentiles有一一的对应关系?(待考证)
practice
normal probability plot
anatomy of a normal probability plot
skewness
嗯嗯,简单的例子
the Milgram experiment
测试参与测试的teacher会不会违背他们的自己的意愿去电击的比率。
Bernouilli random variables
each person in Milgram's experiment can be thought of as a trial
a person is labeled a success if she refuses to administer a severe shock, and failure if she administers such shock
since only 35% of people refused to administer a shock, probability of success is p = 0.35.
when an individual trial has only two possible outcomes, it is called a Bernoulli random variable
也称为伯努利实验。
example
binomial distribution
the binomial distribution describes the probability of having exactly successes in independent Bernouilli trials with probability of success
binomial conditions
excepted value and standard deviation
二项分布与正态分布的近似
因为用正态分布拟合的方法算,忽略了等于70的情况,所以作0.5的调整,调整为69.5。这样最后的结果更接近真实的结果。
二者能够近似的要求
example