CommencerCommencer gratuitement

Confidence intervals for proportions

Drawing random samples from a population produces slightly different confidence intervals.

The confidence level represents the percentage of the those intervals that capture the true population parameter. For example, we can expect that 90% of the confidence intervals produced at the 90% confidence level to contain the population parameter. pandas, numpy, and proportion_confint have been imported for you.

Cet exercice fait partie du cours

A/B Testing in Python

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Calculate the average purchase rate for group A
pop_mean = checkout[checkout['____'] == '____']['____'].____()
print(pop_mean)
Modifier et exécuter le code