WHO’s Global Health Expenditure Database Data, Insights and Analysis
Public Health
{gt}
Author
Aditya Dahiya
Published
August 14, 2024
The data originates from the Global Health Expenditure Database (GHED) managed by the World Health Organization (WHO). GHED offers a comprehensive and internationally comparable collection of health expenditure data, covering over 190 countries. This database is pivotal for understanding global health financing trends and is instrumental in supporting evidence-based policy-making, particularly in the pursuit of universal health coverage (UHC) and enhancing transparency within health systems. The data within GHED is meticulously structured following the System of Health Accounts 2011 (SHA 2011), ensuring uniformity in tracking health expenditures across different nations. This standardized system enables the systematic monitoring of resource flows through health systems, from funding sources to final consumption in various health care functions.
# Data Import and Wrangling Toolslibrary(tidyverse) # All things tidy# Plot toolslibrary(scales) # Nice Scales for ggplot2library(fontawesome) # Icons display in ggplot2library(ggtext) # Markdown text support for ggplot2library(showtext) # Display fonts in ggplot2library(colorspace) # To lighten and darken coloursrawdf1 <- readxl::read_xlsx(path = here::here("data", "GHED_data.xlsx"),sheet ="Data" )codes_df <- readxl::read_xlsx(path = here::here("data", "GHED_data.xlsx"),sheet ="Codebook" )
Common Visualizations’ Parameters
Code
# Font for plot textfont_add_google("News Cycle",family ="body_font") showtext_auto()text_hil <-"grey30"# Caption stuff for the plotsysfonts::font_add(family ="Font Awesome 6 Brands",regular = here::here("docs", "Font Awesome 6 Brands-Regular-400.otf"))github <-""github_username <-"aditya-dahiya"xtwitter <-""xtwitter_username <-"@adityadahiyaias"social_caption_1 <- glue::glue("<span style='font-family:\"Font Awesome 6 Brands\";'>{github};</span> <span style='color: {text_hil}'>{github_username} </span>")social_caption_2 <- glue::glue("<span style='font-family:\"Font Awesome 6 Brands\";'>{xtwitter};</span> <span style='color: {text_hil}'>{xtwitter_username}</span>")plot_caption <-paste0("**Data:** Global Health Expenditure Database, WHO | ","**Code:** ", social_caption_1, " | **Graphics:** ", social_caption_2 )rm(github, github_username, xtwitter, xtwitter_username, social_caption_2, social_caption_1)
The Figure 1 shows the Current Health Expenditure as a percentage of country’s GDP in some Asian Countries, with a focus on India.