CommencerCommencer gratuitement

Sampling

The sample gathered can be plotted with a histogram to assess the sample distribution, visualizing whether the sample distribution is similar to the assumed distribution of the population.

Make a histogram of the original, normal distribution of 50,000 data points, then gather a small sample to plot and large sample to plot in order to visualize the change in distribution with sample size.

The ggplot2 package and distribution dataset of 50,000 data points have been loaded for you.

Cet exercice fait partie du cours

A/B Testing in R

Afficher le cours

Exercice interactif pratique

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

# Make a histogram of the parent distribution
ggplot() + aes(___) + geom_histogram(___ = 10)
Modifier et exécuter le code