CommencerCommencer gratuitement

Simulate probability for a given set of five years

Now, let's use the check_for_five function from the previous question to simulate 10000 iterations of five years to get an idea of how rare Ronnie Bardah's feat of five consecutive cashes was. Again, we will assume a total of 6000 players, of which 10%, or 600 of them, will cash each year.

Cet exercice fait partie du cours

Probability Puzzles in R

Afficher le cours

Instructions

  • Create a matrix of the results of who cashed for each of the five years, keeping in mind that there are assumed to be 6000 total players, and 600 of them will cash.
  • Fill in the condition to see if any player cashed in all five years.

Exercice interactif pratique

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

players <- c(1:6000)
count <- 0

for(i in 1:10000){
  # Create matrix of cashing players
  cashes <- ___
  # Check for five time winners
  if(___){
    count <- count + 1
  }
}

print(count/10000)
Modifier et exécuter le code