-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from jpthiele/randomness-R
Add R tab to randomness test design (Yahtzee)
- Loading branch information
Showing
3 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#' Roll a fair die num_dice times. | ||
#' Collect as many of the same dice side as possible. | ||
#' | ||
#' @return A vector of die throw results | ||
roll_dice <- function(num_dice) { | ||
ceiling(runif(num_dice, 0, 6)) | ||
} | ||
|
||
#' Play yahtzee with 5 6-sided dice and 3 throws. | ||
#' Collect as many of the same dice side as possible. | ||
#' | ||
#' @return The number of same sides | ||
yahtzee <- function() { | ||
res <- roll_dice(5) | ||
most_common_side <- as.numeric(names(table(res)[which.max(table(res))]))[1] | ||
how_often <- as.vector(table(res)[which.max(table(res))])[1] | ||
|
||
# we keep the most common side | ||
target_side <- most_common_side | ||
num_same_sides <- how_often | ||
if (num_same_sides == 5) { | ||
return(5) | ||
} | ||
|
||
# second and third throw | ||
for (i in 2:3) { | ||
throw <- roll_dice(5 - num_same_sides) | ||
num_same_sides <- num_same_sides + sum(throw == target_side) | ||
|
||
if (num_same_sides == 5) { | ||
return(5) | ||
} | ||
} | ||
return(num_same_sides) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
if (!require(testthat)) install.packages(testthat) | ||
|
||
test_that("dice is working", { | ||
set.seed(42) | ||
expect_equal(roll_dice(5), c(6, 6, 2, 5, 4)) | ||
expect_equal(roll_dice(5), c(4, 5, 1, 4, 5)) | ||
expect_equal(roll_dice(5), c(3, 5, 6, 2, 3)) | ||
}) | ||
|
||
|
||
test_that("yahtzee is working", { | ||
n_games <- 1e6 #could be very slow, when in doubt change to 1e4 | ||
|
||
n_winning <- sum(replicate(n_games, yahtzee()) == 5) | ||
res <- (n_winning / n_games) | ||
expected <- 0.046 | ||
expect_lt(abs(res - expected), 0.003) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters