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.
Latihan ini merupakan bagian dari kursus
A/B Testing in R
Latihan interaktif langsung praktik
Cobalah latihan ini dengan melengkapi kode contoh ini.
# Make a histogram of the parent distribution
ggplot() + aes(___) + geom_histogram(___ = 10)