Calculating sample size
Let's finish up our dive into statistical tests by performing power analysis to generate needed sample size. Power analysis involves four moving parts:
- Sample size
- Effect size
- Minimum effect
- Power
In this exercise, you're working with a website and want to test for a difference in conversion rate. Before you begin the experiment, you must decide how many samples you'll need per variant using 5% significance and 95% power.
Este exercício faz parte do curso
Practicing Statistics Interview Questions in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Standardize the effect size
from statsmodels.stats.proportion import proportion_effectsize
std_effect = ____