ComeçarComece de graça

Waiting for first coin flip

You'll start by simulating a series of coin flips, and "waiting" for the first heads.

Este exercício faz parte do curso

Foundations of Probability in R

Ver curso

Instruções do exercício

  • 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.

Exercício interativo prático

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

# Simulate 100 instances of flipping a 20% coin
flips <- ___

# Use which to find the first case of 1 ("heads")
which(___)[1]
Editar e executar o código