Using replicate() for simulation
Use the replicate() function to simulate 100,000 trials of waiting for the first heads after flipping coins with 20% chance of heads. Plot a histogram of this simulation by calling qplot().
Diese Übung ist Teil des Kurses
Foundations of Probability in R
Anleitung zur Übung
- Use
replicate()to simulate 100,000 geometric trials. Copy and paste the expression given to you as your second argument toreplicate(). - Plot a histogram by calling
qplot()on thereplications.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Existing code for finding the first instance of heads
which(rbinom(100, 1, 0.2) == 1)[1]
# Replicate this 100,000 times using replicate()
replications <-
# Histogram the replications with qplot
qplot(___)