-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBWQS.R
More file actions
154 lines (127 loc) · 5.56 KB
/
Copy pathBWQS.R
File metadata and controls
154 lines (127 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#-------------------------------------------------------------------------------
## Reproducible & Generalisable Bayesian Weighted Quantile Sum (BWQS) Script
# - Simulates correlated mixture exposures, covariates, and a binary outcome
# - Fits BWQS model using the bwqs package
# - Tests assumptions, extracts weights, plots results
#-------------------------------------------------------------------------------
#--------------------------------------------
## Step 1: Setup
rm(list = ls())
set.seed(123)
required_pkgs<-c("BWQS", "MASS", "dplyr", "ggplot2", "corrplot","tidyr", "forcats", "rstan")
if(!("BWQS"%in%.packages(all.available=TRUE))){
devtools::install_github("ElenaColicino/bwqs", build_vignettes = TRUE)
}
is_installed<-required_pkgs %in% rownames(installed.packages(all.available=TRUE))
if(any(is_installed == FALSE)){
install.packages(required_pkgs[!is_installed],repos = "http://cran.us.r-project.org")
}
invisible(lapply(required_pkgs, library, character.only = TRUE))
#--------------------------------------------
## Step 2: Simulating data
n<-400
K<-8 # number of mixture components
rho<-0.5
Sigma<-rho ^ as.matrix(dist(1:K))
raw<-MASS::mvrnorm(n, mu = rep(0, K), Sigma = Sigma)
expo_df<-as.data.frame(exp(raw / 3))
colnames(expo_df)<-paste0("chem_", seq_len(K))
cov_df<-data.frame(age=rnorm(n, 50, 12),sex=rbinom(n, 1, 0.5))
true_w<-c(0.35, 0.25, 0.15, 0.10, rep(0.0375, 4)) # sums to 1
h_z<-as.numeric(as.matrix(log1p(expo_df)) %*% true_w)
linpred<- -1.5 + 0.02 * cov_df$age + 0.3 * cov_df$sex + 2 * h_z
prob<-plogis(linpred)
y<-rbinom(n, 1, prob)
sim_data<-cbind(data.frame(y = y), cov_df, expo_df)
expo_names<-paste0("chem_", seq_len(K))
#--------------------------------------------
## Step 3: EDA — correlation among exposures
corr_mat<-cor(log1p(sim_data[, expo_names]), method = "spearman")
corrplot::corrplot.mixed(corr_mat, tl.cex = 0.8, number.cex = 0.7,
main = "Spearman correlation: mixture components")
# Checking exposure distributions
par(mfrow = c(2, 4))
for (v in expo_names) hist(log1p(sim_data[[v]]), main = v, xlab = "log1p")
par(mfrow = c(1, 1))
#--------------------------------------------
## Step 4: Quantizing exposures (required by BWQS)
# bwqs expects integer quantile-ranked exposures (1 to q)
quantize<-function(x, q = 4) as.integer(cut(x, breaks = quantile(x, probs = seq(0, 1, 1/q),
na.rm = TRUE),
include.lowest = TRUE))
q_val<-4
expo_q<-as.data.frame(lapply(sim_data[, expo_names], quantize, q = q_val))
colnames(expo_q)<-expo_names
#--------------------------------------------
## Step 5: Fitting BWQS model
# bwqs() arguments:
# formula : outcome ~ covariates (mixture handled separately via mix_name)
# mix_name: character vector of mixture variable names
# data: data containing quantized exposures + covariates + outcome
# q: number of quantiles already applied
# chains/iter: Stan MCMC settings — increase for final analysis
# family: "binomial" or "gaussian"
bwqs_data<-cbind(data.frame(y = y), cov_df, expo_q)
bwqs_fit<-BWQS::bwqs(formula= y ~ age + sex,
mix_name=expo_names,
data=bwqs_data,
q=NULL, # already quantized above
family="binomial",
chains=2,
c_int = c(0.025, 0.975),
prior = "None",
thin = 3,
Dalp = NULL,
start_value = NULL,
iter=2000, # increase to 4000+ for publication
seed=123)
#--------------------------------------------
## Step 6: Summarizing posterior
bwqs_fit
# Extracting the weight
Weight<-bwqs_fit$summary_fit[grep("^W_", rownames(bwqs_fit$summary_fit)), , drop = FALSE]
Weight<- as_tibble(data.frame(exposure=rownames(Weight),Weight))
Weight
# Extracting mixture effect
beta_summary<-bwqs_fit$summary_fit[grep("beta_wqs|b_wqs", rownames(bwqs_fit$summary_fit)), ]
beta_summary
#--------------------------------------------
## Step 7: Assumption / diagnostics checks ----
# 7a. MCMC convergence: R-hat < 1.01 for all parameters
rhat_vals<-bwqs_fit$summary_fit[, "Rhat"]
cat("\n--- R-hat diagnostics (should all be < 1.01) ---\n")
print(summary(rhat_vals))
if (any(rhat_vals > 1.01, na.rm = TRUE)) {
warning("Some R-hat > 1.01: consider more iterations or checking priors.")
}
# 7b. Effective sample size (n_eff)
neff_vals<-bwqs_fit$summary_fit[, "n_eff"]
cat("\n--- Effective sample sizes (n_eff) ---\n")
print(summary(neff_vals))
if (any(neff_vals < 100, na.rm = TRUE)) {
warning("Some n_eff < 100: poor mixing. Increase iterations.")
}
#--------------------------------------------
## Step 8: Plotting weight
ggplot(Weight, aes(x = reorder(exposure, mean), y = mean)) +
geom_col(fill = "steelblue") +
coord_flip() +
labs(x = NULL, y = "Posterior mean weight") +
theme_minimal()
ggplot(Weight, aes(x = reorder(exposure, mean), y = mean)) +
geom_point(col = "steelblue") +
coord_flip() +
geom_errorbar(aes(ymin =X2.5., ymax =X97.5.), width = 0.2) +
coord_flip() +
labs(x = NULL, y = "Posterior mean weight") +
theme_minimal()
#--------------------------------------------
## Step 9: Plotting mixture effect
library(bayesplot)
beta1_draws <- as.data.frame(rstan::extract(bwqs_fit$fit)$beta1)
colnames(beta1_draws)<-"beta1"
ggplot(beta1_draws, aes(x = beta1)) +
geom_density(fill = "tomato", alpha = 0.4) +
geom_vline(xintercept = 0, linetype = 2) +
theme_minimal() +
labs(x = expression(beta[1]), y = "Posterior density")