Last active
January 28, 2020 16:18
-
-
Save sieste/d1b3b50fb735204e0a318dd1039dc5a7 to your computer and use it in GitHub Desktop.
MTH3028 Lecture 1.7
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
n = 1 | |
theta = 1 | |
alpha = 0.05 | |
lo = up = numeric(10000) | |
for (i in 1:10000) { | |
x = rexp(n, 1/theta) | |
lo[i] = -x / log(alpha) | |
up[i] = -x / log(1-alpha) | |
} | |
mean(theta < lo) | |
mean(theta > up) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment