ComeçarComece de graça

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.

Este exercício faz parte do curso

A/B Testing in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Make a histogram of the parent distribution
ggplot() + aes(___) + geom_histogram(___ = 10)
Editar e executar o código