CommencerCommencer gratuitement

Simulating from the geometric distribution

In this exercise you'll compare your replications with the output of rgeom().

Cet exercice fait partie du cours

Foundations of Probability in R

Afficher le cours

Instructions

  • Use the function rgeom() to simulate 100,000 draws from a geometric distributions with probability .2. Save this as geom_sample.
  • Compare replications and geom_sample with the compare_histograms() function.

Exercice interactif pratique

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

# Replications from the last exercise
replications <- replicate(100000, which(rbinom(100, 1, .2) == 1)[1])

# Generate 100,000 draws from the corresponding geometric distribution
geom_sample <- rgeom(___)

# Compare the two distributions with compare_histograms
Modifier et exécuter le code