我正在学习假设检验,并通过以下示例进行操作:

一家大型电力公司的首席执行官声称,在他的1,000,000名客户中,有80%对他们所获得的服务非常满意。为了检验这一说法,当地报纸使用简单的随机抽样调查了100位客户。在抽样的客户中,有73%的客户表示非常满意。基于这些发现,我们是否可以拒绝首席执行官80%的客户非常满意的假设?使用0.05的显着性水平。

与使用Python中的自举方法相比,使用单样本z检验计算p值时得到的结果不同。

Z检验方法:

σ= sqrt [(0.8 * 0.2)/ 100] = sqrt(0.0016)= 0.04
z =(p-P)/σ=(.73-.80)/0.04 = -1.75

两尾检验,因此P(z 1.75)= 0.04。

因此,P值= 0.04 + 0.04 = 0.08。

引导方法(在Python中):

一般方法是从满足80%的总体(1,000,000)中随机抽取大小为100的样本

repeat 5000 times:
    take random sample of size 100 from population (1,000,000, 80% of which are satisfied)
    count the number of satisfied customers in sample, and append count to list satisfied_counts
calculate number of times that a value of 73 or more extreme (<73) occurs. Divide this by the number of items in satisfied_counts

Since it's a two-tailed test, double the result to get the p-value.


使用此方法时,p值为0.11。

这是代码:

population = np.array(['satisfied']*800000+['not satisfied']*200000)     # 80% satisfied (1M population)
num_runs = 5000
sample_size = 100
satisfied_counts = []

for i in range(num_runs):
    sample = np.random.choice(population, size=sample_size, replace = False)
    hist = pd.Series(sample).value_counts()
    satisfied_counts.append(hist['satisfied'])

p_val = sum(i <= 73 for i in satisfied_counts) / len(satisfied_counts) * 2


两种结果为何不同?任何帮助/指向正确方向表示赞赏!

最佳答案

区别是栅栏/舍入误差的一种形式。

正态近似表示,获得0.73的几率大约是相应的正态分布在0.725和0.735之间的几率。因此,您应使用0.735作为截止值。这将使两个数字更接近。

关于statistics - 比例测试:Z检验与 bootstrap /排列-不同的结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54949353/

10-12 17:34