Suicides In Saskatchewan
Graphs of yearly suicides in Saskatchewan using SK GOV data
Data
Government of Saskatchewan Death Statistics
Prepare Data
# devtools::install_github("derekmichaelwright/agData")
library(agData)
library(readxl) # read_xlsx()
library(gganimate)
# Prep data
myCaption <- "www.dblogr.com/ or derekmichaelwright.github.io/dblogr/ | Data: SK GOV"
myColors <- c("palevioletred3", "steelblue")
d1 <- read_xlsx("data_saskatchewan_suicides.xlsx", "Age") %>%
gather(Year, Deaths, 3:ncol(.)) %>%
mutate(Year = as.numeric(Year))
myRaces <- c("Unknown", "Other", "Black", "Asian",
"Metis","First Nations", "Caucasian")
d2 <- read_xlsx("data_saskatchewan_suicides.xlsx", "Race") %>%
gather(Year, Deaths, 3:ncol(.)) %>%
mutate(Year = as.numeric(Year),
Race = factor(Race, levels = myRaces))
Total Suicides
# Prep data
xx <- d1 %>% group_by(Year) %>%
summarise(Deaths = sum(Deaths))
# Plot
mp <- ggplot(xx, aes(x = Year, y = Deaths)) +
geom_bar(stat = "identity", fill = "darkred", color = "black", alpha = 0.7) +
scale_x_continuous(breaks = 2005:max(xx$Year)) +
theme_agData(axis.text.x = element_text(angle = 45, hjust = 1)) +
labs(title = "Suicides in Saskatchewan",
x = NULL, caption = myCaption)
ggsave("saskatchewan_suicides_01.png", mp, width = 6, height = 4)
By Age
All Data
mp <- ggplot(d1, aes(x = Year, y = Deaths, fill = Sex)) +
geom_bar(stat = "identity", color = "black", lwd = 0.2, alpha = 0.7) +
facet_grid(. ~ Age) +
scale_x_continuous(breaks = c(2010, 2020), minor_breaks = 2005:2021) +
scale_fill_manual(name = NULL, values = myColors) +
theme_agData(legend.position = "bottom") +
labs(title = "Suicides in Saskatchewan",
x = NULL, caption = myCaption)
ggsave("saskatchewan_suicides_02.png", mp, width = 12, height = 4)
By Sex
mp <- ggplot(d1, aes(x = Year, y = Deaths, fill = Sex)) +
geom_bar(stat = "identity", color = "black", lwd = 0.2, alpha = 0.7) +
facet_grid(Sex ~ Age) +
scale_x_continuous(breaks = c(2010, 2020), minor_breaks = 2005:2021) +
scale_fill_manual(name = NULL, values = myColors) +
theme_agData(legend.position = "none") +
labs(title = "Suicides in Saskatchewan",
x = NULL, caption = myCaption)
ggsave("saskatchewan_suicides_03.png", mp, width = 12, height = 6)
2021
mp <- ggplot(d1 %>% filter(Year == 2021),
aes(x = Age, y = Deaths, fill = Sex)) +
geom_bar(stat = "identity", position = "dodge",
color = "black", alpha = 0.7) +
scale_fill_manual(name = NULL, values = myColors) +
theme_agData(legend.position = "bottom") +
labs(title = "Suicides in Saskatchewan - 2021",
x = NULL, caption = myCaption)
ggsave("saskatchewan_suicides_04.png", mp, width = 6, height = 4)