Interactive and static plots of depression symptoms.
Depression_symptoms_not_shown %>%
mutate(NAA = round(NAA, 2)) %>%
arrange(NAA) %>%
e_charts(x = Symptoms) %>%
e_bar(serie = NAA, legend = FALSE) %>%
e_flip_coords() %>%
e_tooltip(trigger = "axis") %>%
e_title(text = "Depression Symptoms not shown",
subtext = "(in 2014) Source; Our World in Data",
sublink = "https://ourworldindata.org/what-is-depression",
left = "center") %>%
e_theme("roma")
Depression_symptoms_not_shown %>%
ggplot(aes(x = Symptoms, y = NAA)) +
geom_col() +
coord_flip() +
theme_classic() +
theme(legend.position = "bottom")
These plots show the the rate of which symptom was not shown at all.