Created
June 29, 2020 02:28
-
-
Save omartinez182/48a86ba9af295c50840342b769249b87 to your computer and use it in GitHub Desktop.
Demystifying Statistical Significance for Business Professionals
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Hypothesis Test for Comparing Two Proportions | |
#Libraries | |
import numpy as np | |
from statsmodels.stats.proportion import proportions_ztest | |
#Null Hypothesis: The difference in proportions is = 0. HA: the difference in proportions is ≠ 0. | |
Ho = 0 | |
#Number of users converted in each campaign | |
conv_users = np.array([220, 280]) | |
#Total number of users in each campaign | |
t_users = np.array([4530, 5234]) | |
#Two-sided hypothesis test | |
z_stat, p_val = proportions_ztest(conv_users, t_users, value = Ho, alternative='two-sided', prop_var=False) | |
#Test Statistic | |
print('Test Statistic:','{0:0.4f}'.format(z_stat)) | |
#P-value | |
print('P-value :','{0:0.4f}'.format(p_val)) | |
#Results | |
alpha = 0.1 | |
if p_val < alpha: | |
print("Statistically significant, reject null hypothesis that population proportions are equal") | |
else: | |
print("Not significant, fail to reject the null hypothesis that population proportions are equal") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment