Waiting for first coin flip
You'll start by simulating a series of coin flips, and "waiting" for the first heads.
Cet exercice fait partie du cours
Foundations of Probability in R
Instructions
- Simulate 100 instances of flipping a single coin with a 20% chance of heads, and save it as the variable
flips
. (Thus,flips
should be a vector of length 100). - Use
which()
to find the first case where a coin resulted in heads.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Simulate 100 instances of flipping a 20% coin
flips <- ___
# Use which to find the first case of 1 ("heads")
which(___)[1]