LoslegenKostenlos loslegen

Simulate one game

Let us now simulate one game of Settlers of Catan, under the assumption that a game lasts for 60 rolls of the two dice.

Here, we will use the replicate function to run the game, and the table function to display the results. Within this task, the roll_dice function from previous exercises is available for you to do each roll.

Diese Übung ist Teil des Kurses

Probability Puzzles in R

Kurs anzeigen

Anleitung zur Übung

  • Use the replicate function to do 60 replications of rolling two dice.
  • Use the table function to display the results.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

set.seed(1)

# Simulate one game (60 rolls) and store the result
rolls <- ___

# Display the result
Code bearbeiten und ausführen