Aan de slagGa gratis aan de slag

Writing a simple for loop

Let's write a for loop to repeat a process several times, incrementally storing the results in a vector. We will use the function that we created in the previous exercise to roll dice.

Deze oefening maakt deel uit van de cursus

Probability Puzzles in R

Cursus bekijken

Oefeninstructies

  • Indicate in the for loop that the index should go from 1 to 10000.
  • Fill in the index for output to store each result.
  • Fill in the argument for roll_dice to roll two dice.

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

# Initialize a vector to store the output
output <- rep(NA, 10000)

# Loop for 10000 iterations
for(i in ___){
  # Fill in the output vector with the result from rolling two dice
  output[___] <- roll_dice(___)
}
Code bewerken en uitvoeren