I am using the power.prop.test function for A/B testing. Based on the amount of impressions per group in an A/B test, what would would be a statistically significant lift?
The control group would have a proportion of 0.004.
If I run the following code:
power.prop.test(
n= 6289195
p1=0.004,
power=0.8,
sig.level=0.05,
tol=.Machine$double.eps^.8)
the result is this:
Two-sample comparison of proportions power calculation
n = 6289195
p1 = 0.004
p2 = 0.004100341
sig.level = 0.05
power = 0.8
alternative = two.sided
NOTE: n is number in each group
So is this saying that the minimum lift is 0.000100 (0.004100341-0.004) which is equivalent to 0.01%?
It seems very low which is why I am asking.