Understanding the geographic distribution of suicide rates may be important for the development of target mental health policies and preventative measures. In this study, we apply a Bayesian hierarchical model with a conditionally autoregressive (CAR) prior to investigate spatial patterns in suicide rates across countries. We model the suicide rate as a continuous outcome using a Gaussian likelihood, with a global intercept, a temporal effect comparing 2019 and 2021, and spatial random effects that capture regional deviations.
Our main research question is: Are there identifiable spatial patterns that persist after taking global and temporal effects into account, and did suicide rates change significantly between 2019 and 2021 at a global level?
This data comes from the World Health Organization.
We chose our priors based on literature reviews, which resulted in the following model:
Since our dataset does not include information on the neighbors of each country, we've used an additional dataset rnaturalearthdata to inform the conditional autoregressive aspect of the model. Then, we built our list of data inputs formatted for our Stan model and estimated the posterior.
# Estimate the posterior
model <- stan_model(file = "model.stan")
fit <- sampling(model, data = stan_data, iter = 4000, warmup = 2000, chains = 4, seed = 123)
To assess the fit of the model, we create trace plots:
# Create trace plots
head(summary(fit)$summary)
mcmc_trace(as.array(fit), pars = c("mu", "sigma", "sigma_phi"))
Output:
We observe that the trace plots for
This visualization tells us how much each country deviates from the global average suicide rate, after adjusting for time. Countries that are darker in color indicate a lower-than-expected suicide rate, while countries that are lighter in color indicate a higher-than-expected suicide rate.
This analysis provides strong evidence that there is a spatial pattern in suicide rates. Based on these results, it may be beneficial to focus on employing more mental health resources in countries like Russia and South Africa, where the suicide rates are higher than expected.
Note that the focus of this analysis is whether or not there is a spatial relationship between location and suicide rate, but it does not consider underlying factors, such as culture, mental health resources, and economic state. For example, the topic of mental health is considered to be taboo in many countries, resulting in limited access to mental health resources.
The next step would be to incorporate Rao Blackwellization or another form of model reduction to reduce the number of parameters and procide easier interpretability. It may also be helpful to look further into these underlying factors and determine whether or not there is a relationship between the factor and suicide rate. This can be combined with information about the distribution of suicide rates across gender and age to give more insight into which subset of groups should be targeted for suicide prevention methods in certain countries.