-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
17,416 additions
and
11 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
...09-wonderful-wednesdays-march-2024/images/.~lock.MOMS-PI Wolfinger - Russ Wolfinger.pptx#
This file was deleted.
Oops, something went wrong.
174 changes: 174 additions & 0 deletions
174
_posts/2024-09-10-wonderful-wednesdays-april-2024/code/app - Steve Mallett.R
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,174 @@ | ||
library(tidyverse) | ||
library(cowplot) | ||
library(ggtext) | ||
library(stringr) | ||
|
||
ui <- fluidPage( | ||
|
||
# Application title | ||
titlePanel("Power and Sample Size Tool"), | ||
|
||
# Sidebar with a slider input for number of bins | ||
sidebarLayout( | ||
sidebarPanel( | ||
numericInput(inputId = "ALPHA", | ||
label = h4("Alpha"), | ||
value = 0.05, min = 0, max = 1), | ||
numericInput(inputId = "SD", | ||
label = h4("Standard deviation"), | ||
value = 50), | ||
numericInput(inputId = "TE", | ||
label = h4("Average treatment difference (drug - placebo)"), | ||
value = 15), | ||
sliderInput(inputId = "N", | ||
label = h4("Sample size (per arm)"), | ||
min = 0, | ||
max = 500, | ||
value = 200, | ||
step=10), | ||
), | ||
|
||
|
||
|
||
# Show a plot of the generated distribution | ||
mainPanel( | ||
plotOutput(outputId = "myPlot1" | ||
, width = "800px", height = "1000px")) | ||
) | ||
) | ||
|
||
server <- function(input, output, session) { | ||
|
||
output$myPlot1 <- renderPlot({ | ||
|
||
n <- as.numeric(input$N) | ||
sd <- as.numeric(input$SD) | ||
alpha <- as.numeric(input$ALPHA) | ||
te <- as.numeric(input$TE) | ||
|
||
sides <- 1 | ||
se_diff = sqrt(2*(sd^2/n)) | ||
power1 <- power.t.test(n = n, delta = te, sd = sd, sig.level = alpha, | ||
power = NULL, | ||
type = "two.sample", | ||
alternative = "two.sided") | ||
powern <- power1$power | ||
powerc <- paste0("Power: ", round(powern, 2)*100, "%") | ||
|
||
# Null | ||
mu_null <- 0 | ||
lower_null <- -3 * se_diff + mu_null | ||
upper_null <- 3 * se_diff + mu_null | ||
crit_null <- qnorm(1-alpha/2, mean = mu_null, sd = se_diff) | ||
crit <- paste0("Critical value: ", round(crit_null, 1)) | ||
fpos <- paste0("False positive rate: ", round(alpha, 2)*100, "%") | ||
fneg <- paste0("False negative rate: ", round(1-powern, 2)*100, "%") | ||
x_null <- seq(lower_null, upper_null, length = 1000) | ||
y_null <- dnorm(x_null, mu_null, se_diff) | ||
df_null <- data.frame(cbind(x_null, y_null)) | ||
|
||
df_rej_null_r <- df_null %>% | ||
filter(x_null > crit_null) %>% | ||
arrange(desc(x_null)) | ||
|
||
df_rej_null_l <- df_null %>% | ||
filter(x_null < crit_null*-1) %>% | ||
arrange(x_null) | ||
|
||
temp_r <- data.frame(x_null = crit_null, y_null = df_rej_null_r$y_null[1]) | ||
temp_l <- data.frame(x_null = crit_null*-1, y_null = df_rej_null_l$y_null[1]) | ||
df_rej_null_r <- rbind(temp_r, df_rej_null_r) | ||
df_rej_null_l <- rbind(temp_l, df_rej_null_l) | ||
|
||
# Alternative | ||
mu_alt <- te | ||
lower_alt <- -3 * se_diff + mu_alt | ||
upper_alt <- 3 * se_diff + mu_alt | ||
x_alt <- seq(lower_alt, upper_alt, length = 1000) | ||
y_alt <- dnorm(x_alt, mu_alt, se_diff) | ||
df_alt <- data.frame(cbind(x_alt, y_alt)) | ||
|
||
df_rej_alt_l <- df_alt %>% | ||
filter(x_alt < crit_null) %>% | ||
arrange(x_alt) | ||
|
||
temp <- data.frame(x_alt = crit_null, y_alt = df_rej_alt_l$y_alt[1]) | ||
df_rej_alt_l2 <- rbind(df_rej_alt_l, temp) | ||
|
||
df_rej_alt_r <- df_alt %>% | ||
filter(x_alt > crit_null) %>% | ||
arrange(desc(x_alt)) | ||
|
||
temp <- data.frame(x_alt = crit_null, y_alt = df_rej_alt_r$y_alt[1]) | ||
df_rej_alt_r2 <- rbind(temp, df_rej_alt_r) | ||
|
||
|
||
|
||
gnull <- ggplot(df_null, aes(x = x_null, y = y_null)) + | ||
geom_polygon(data = df_null, color="black", fill="white") + | ||
geom_polygon(data = df_rej_null_r, color="black", fill="#fb6a4a", alpha=0.9) + | ||
geom_polygon(data = df_rej_null_l, color="black", fill="#fb6a4a", alpha=0.9) + | ||
geom_segment(x=crit_null, xend=crit_null, y=y_null[1], yend=y_null[500], color="#2b8cbe", linetype="dashed") + | ||
geom_segment(x=mu_null, xend=mu_null, y=0, yend=y_null[500], color="black", linetype="dotted") + | ||
scale_x_continuous(limits = c(lower_null, upper_alt)) + | ||
theme(plot.title = element_markdown(colour = "#636363", size = 12), | ||
panel.background=element_blank(), | ||
axis.line.x=element_line(color="black"), | ||
axis.line.y=element_blank(), | ||
axis.ticks.x=element_line(color="black"), | ||
axis.ticks.y=element_blank(), | ||
axis.title=element_blank(), | ||
axis.text.y=element_blank(), | ||
axis.text.x=element_text(color="black", size=20)) + | ||
annotate("text", x = lower_null, y = y_null[500]*1.1, color="#252525", label = "Null Hypothesis", hjust=0, size=8) + | ||
annotate("text", x = crit_null+upper_alt/80, y = y_null[500]*0.6, color="#2b8cbe", label = crit, hjust=0, size=8) + | ||
annotate("text", x = crit_null+upper_alt/80, y = y_null[500]*0.5, color="#fb6a4a", label = fpos, hjust=0, size=8) | ||
|
||
galt <- ggplot(df_alt, aes(x = x_alt, y = y_alt)) + | ||
geom_polygon(data = df_alt, color="black", fill="white") + | ||
geom_polygon(data = df_rej_alt_r2, color="black", fill="#74c476") + | ||
geom_polygon(data = df_rej_alt_l2, color="black", fill="#fb6a4a") + | ||
geom_segment(x=crit_null, xend=crit_null, y=y_alt[1], yend=y_alt[500], color="#2b8cbe", linetype="dashed") + | ||
geom_segment(x=mu_alt, xend=mu_alt, y=0, yend=y_alt[500], color="black", linetype="dotted") + | ||
scale_x_continuous("Treatment Effect: (treatment - placebo)", | ||
limits = c(lower_null, upper_alt)) + | ||
theme(panel.background=element_blank(), | ||
axis.line.x=element_line(color="#252525"), | ||
axis.line.y=element_blank(), | ||
axis.ticks.x=element_line(color="#252525"), | ||
axis.ticks.y=element_blank(), | ||
axis.title.x=element_text(color="#252525", size=20), | ||
axis.title.y=element_blank(), | ||
axis.text.y=element_blank(), | ||
axis.text.x=element_text(color="#252525", size=20)) + | ||
annotate("text", x = lower_null, y = y_null[500]*0.9, color="#252525", label = "Alternative Hypothesis", hjust=0, size=8) + | ||
annotate("text", x = lower_null, y = y_null[500]*0.6, color="#238b45", label = powerc, hjust=0, size=8) + | ||
annotate("text", x = lower_null, y = y_null[500]*0.5, color="#fb6a4a", label = fneg, hjust=0, size=8) | ||
|
||
|
||
title0 <- ggdraw() + draw_label("Test title", size = 22) | ||
plot_grid(gnull, galt, ncol=1, rel_heights = c(50, 50), align = "v") | ||
|
||
}) | ||
|
||
output$myPlot2 <- renderPlot({ | ||
|
||
df <- data.frame(matrix(nrow=1, ncol = 1)) | ||
names(df) <- "percentage" | ||
df$percentage <- power | ||
df <- df %>% mutate(label = paste0(round(percentage, 2)*100, "%")) | ||
|
||
ggplot(data=df) + | ||
geom_rect(aes(ymax=1, ymin=0, xmax=2, xmin=1), fill ="#ece8bd") + | ||
geom_rect(aes(ymax = percentage, ymin = 0, xmax = 2, xmin = 1), fill = "#74c476") + | ||
coord_polar(theta = "y",start=-pi/2) + xlim(c(0, 2)) + ylim(c(0,2)) + | ||
geom_text(aes(x = 0, y = 0, label = label), colour="#74c476", size=14) + | ||
# geom_text(aes(x=1.5, y=1.5), label="Power", size=4.2) + | ||
theme_void() + | ||
# scale_colour_manual(values = c("red"="#C9146C", "orange"="#DA9112", "green"="#129188")) + | ||
theme(strip.background = element_blank(), | ||
strip.text.x = element_blank()) | ||
}) | ||
} | ||
|
||
shinyApp(ui, server) |
60 changes: 60 additions & 0 deletions
60
_posts/2024-09-10-wonderful-wednesdays-april-2024/code/power - T M.R
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,60 @@ | ||
# Wonderful Wednesday | ||
# Statistical Power | ||
|
||
# by Tom Marlow | ||
|
||
|
||
# T-test that shows poewr to detcet difference of 5 ot 8% in EF | ||
|
||
# Assumptions | ||
|
||
library(tidyverse) | ||
library(pwr) | ||
|
||
fn_pwr <- function(n, d) { | ||
power <- pwr.t.test(n = n, | ||
d = d, | ||
sig.level = 0.05, | ||
alternative = "two.sided", | ||
type = "two.sample")$power | ||
return(power * 100) | ||
} | ||
|
||
ssize = c(2:12) | ||
msd <- tibble(effect = rep(c(6, 8, 10), each = 3), | ||
sd_inc = rep(c(1, 1.25, 1.5), 3)) %>% | ||
mutate(sd = 4 * sd_inc) %>% | ||
mutate(delta = effect / sd) | ||
|
||
pwr_tab <- tibble(effect = factor(rep(msd$effect, each = length(ssize)), | ||
levels = c(6, 8, 10), | ||
labels = c("6%", "8%", "10%")), | ||
sd_inc = as.factor(rep(msd$sd_inc, each = length(ssize))), | ||
n = rep(ssize, length(msd$delta)), | ||
d = rep(msd$delta, each = length(ssize))) %>% | ||
mutate(power = fn_pwr(n, d)) | ||
|
||
pwr_fig <- ggplot(data = pwr_tab, | ||
aes(x = n, y = power, colour = sd_inc)) + | ||
geom_line() + | ||
geom_hline(yintercept = 80) + | ||
geom_line(linewidth = 1) + | ||
scale_x_continuous(breaks = ssize, name = "Sample size") + | ||
scale_y_continuous(breaks = seq(0, 100, by = 20)) + | ||
labs( | ||
y = "Power (%)", | ||
title = "Power to detect deltas of 6, 8 and 10% in ejection fraction", | ||
subtitles = "Two-sided, two-sample t-test, alpha=0.05, sd=4", | ||
colour = "SD increase" | ||
) + | ||
geom_point(size = 2, shape = 21, fill = "white") + | ||
theme_bw() + | ||
theme( | ||
axis.text = element_text(size = 10), | ||
axis.title = element_text(size = 12), | ||
panel.grid.minor = element_blank(), | ||
legend.position = "bottom") + | ||
scale_colour_viridis_d() + | ||
facet_wrap(effect ~ .) | ||
|
||
pwr_fig |
7 changes: 7 additions & 0 deletions
7
...10-wonderful-wednesdays-april-2024/images/WW April 2024 Steve Mallett - Steve Mallett.txt
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,7 @@ | ||
April 2024 Wonderful Wednesday | ||
|
||
Author: Steve Mallett | ||
|
||
Link: | ||
|
||
https://steve-mallett.shinyapps.io/WWApr24Power/ |
Binary file added
BIN
+50.5 KB
_posts/2024-09-10-wonderful-wednesdays-april-2024/images/g_power_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+86.4 KB
_posts/2024-09-10-wonderful-wednesdays-april-2024/images/g_power_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+772 KB
_posts/2024-09-10-wonderful-wednesdays-april-2024/images/power - T M.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+48.6 KB
_posts/2024-09-10-wonderful-wednesdays-april-2024/images/shiny_app.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+95.7 KB
_posts/2024-09-10-wonderful-wednesdays-april-2024/images/statulator_tool.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.