File:Filtered R.png
Appearance
Size of this preview: 558 × 600 pixels. Other resolution: 1,020 × 1,096 pixels.
Original file (1,020 × 1,096 pixels, file size: 77 KB, MIME type: image/png)
Summary
theta <- seq(0, .80, .01)
R_BH <- filtered_R(alpha=.10, S2, p2, theta, method="BH")
which.max(R_BH)
# 60% <---- so theta=0.6 is the optimal filtering threshold
# 61
max(R_BH)
# [1] 380
plot(theta, R_BH, type="l",
xlab=expression(theta), ylab="Rejections",
main="BH cutoff = 0.1")
abline(v=.6, lty=2)
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 20:41, 11 March 2024 | 1,020 × 1,096 (77 KB) | Brb (talk | contribs) | <syntaxhighlight lang='r'> theta <- seq(0, .80, .01) R_BH <- filtered_R(alpha=.10, S2, p2, theta, method="BH") which.max(R_BH) # 60% <---- so theta=0.6 is the optimal filtering threshold # 61 max(R_BH) # [1] 380 plot(theta, R_BH, type="l", xlab=expression(theta), ylab="Rejections", main="BH cutoff = 0.1") abline(v=.6, lty=2) </syntaxhighlight> |
You cannot overwrite this file.
File usage
The following page uses this file: