Author: Brendan G.

Date: November 17, 2024

Introduction

With the popularity of Ozempic(semaglutide) for its dramatic effect on weight, I was curious to see if it and other semaglutide drugs was living up to the hype. Novo Nordisk, a pharmaceutical company developed Ozempic in December 2017 “to improve blood sugar in adults with type 2 diabetes [along with diet and exercise]. In adults with type 2 diabetes and known heart disease, Ozempic reduces the risk of major cardiovascular events such as stroke, heart attack, or death. You may also lose some weight.” What follows is a brief analysis of the data in the US looking at not only weight-loss but also cardiovascular mortality since Ozempic’s first arrival on the pharmaceutical scene in December 2017.

library(dplyr)
library(ggplot2)
library(gtrendsR)
library(quantmod)
library(pandoc)
trends <- gtrends(keyword = c("semaglutide", "wegovy", "ozempic", "rybelsus"), gprop = c("web", "news", "images", "froogle", "youtube" ), category = 0, geo = 'US', time = "2016-01-01 2024-11-01", low_search_volume = FALSE, onlyInterest = TRUE)
trends_over_time <- trends$interest_over_time
trends_over_time <- trends_over_time %>% mutate(hits = as.numeric(hits))

Google Trend Data for Semaglutide Product

Google trends were obtained across major platforms to look at not only ozempic, but also the generic name, semaglutide, and the associated brands of rybelsus and wegovy.

trends_over_time_plot <- ggplot(trends_over_time, aes()) + 
     geom_line(aes(date, hits, color = keyword)) +
     labs(title = "Semaglutide and Brand-name Search Hits over Time", x = "Year", y = "Number of Search Hits (set to 100)", color = "Search Entry" )
trends_over_time_plot

Average Cost Per Capita in the US

Interventions that reduce or eliminate causes of mortality within a country, should be reflected in the per-capita spending within the healthcare sector. As US healthcare costs continue to rise without evidence of improved overall morbidity/mortality benefits, any intervention that would provide a cost savings would be noteworthy, otherwise it is just another sunk cost.

cost_plot <- ggplot(cost, aes(x=Year, y= Dollars_per_Capita, color="Healthcare Per Capita in USD")) + 
     geom_line() +
     labs(title = "Cost of US Healthcare per Person by Year", x = "Year", y = "US Healthcare Cost Per Capita") 
cost_plot

Semaglutide Summary - Savior or Swindle?

This data journey ends at an inconclusive conclusion. It appears to be too early to note any significant difference in outcomes with respect to BMI, cardiovascular mortality, or healthcare spending in the US since the availablity of semaglutide. What has shown to be benefited is the stock price for NOvo Nordisk, and one can extrapolate that data to its shareholders and executives.

There are likely myriad confounding factors that are not yet conferring a benefit on semaglutide. Some suggested factors are as follows, but not limited to:

  1. It may be early. It is unknown how long it would reasonably take to for a medication of this drug class to demonstrate an effect on the cardiovascular mortality data. This, arguably, is a “wider ship” to turn than other indices like BMI. To this point, there are not enough data points since semaglutide’s inception to create a meaningful linear regression.

  2. It may be underpowered. As in the previous point, there may be a critical mass of patients that has not been reached yet to provide a statistical change

  3. It may be expensive. The cost to entry may be too high for the most at risk populations and subsequently this is skewing the cardiovascular and obesity data. It would be interesting to see if/when the cost of these drugs decreases and/or more insurance companies cover them, what will happen to observances.

  4. It may be COVID. For the rest of my data science career, COVID-19 will always be my “yes, but…” when it comes to confounders. The truth is that in these types of healthcare analyses, the dust is still settling relative to health costs and index mortality data sets. As more distance is created from The Pandemic, there may be a noticeable shift.

summary <- read.csv("Semaglutide_Cross_Sectional.csv")

summary_plot <- ggplot(summary, aes(x = Year)) + 
   geom_line(aes(y=Patients, color = "Patients Prescribed (set to 10k)")) +
   geom_line(aes(y=CVD, color = "Cardiovascular Deaths (per 100k")) +
   geom_line(aes(y=BMI_obese, color = "BMI 30-40")) +
     geom_line(aes(y=BMI_morbid, color = "BMI > 40")) +
      labs(title = "Semaglutide: Summary",subtitle = "Patient Numbers, Cardiovascular Mortality, & Obesity Rates", x = "Year", y = "Volume") 
summary_plot

References

OZEMPIC

Source: https://www.ozempic.com/why-ozempic/what-is-ozempic.html?showisi=true&&utm_source=google&utm_medium=cpc&utm_term=ozempic&utm_campaign=1_All_Shared_BR_Branded_Specifics_2023&mkwid=s-dc_pcrid_677045568899_pkw_ozempic_pmt_e_slid__product_&pgrid=158457129350&ptaid=kwd-392229870365&gad_source=1&gclid=Cj0KCQiA88a5BhDPARIsAFj595ju_wNsllK1y3QpLb01Cw3qc_oNwytA5v_XdNGMDM8wkIAuVlRrGVkaAm7BEALw_wcB&gclsrc=aw.ds

CVD AAMRs CDC: NCHS Data Briefs, “Mortality in the United States”, years 2014-2023

AHA: 2024 Heart Disease and Stroke Statistics: A Report of US and Global Data from the American Heart Association

OBESITY CDC: NCHS, “Obesity and Severe Obesity Prevalence in Adults: United States, August 2021 - August 2023.”; In Data Table for Figure 4. “Trends in age-adjusted obesity and severe obesity prevalence in adults age 20 and older: United States, 2013–2014 through August 2021–August 2023”

HEALTH COST CMS: National Health Expenditure Accounts, NHE Summary 1960-2022

SEMAGLUTIDE SALES Pharmalive.com, “Company of the Year 2023: Novo Nordisk - Riding the Semaglutide Wave.”

AHRQ, MEPS Data Tools, Prescribed Drugs

Clincalc, Drug Usage Statistics, United States, 2013-2022

Medical Disclaimer: This data analysis is provided to the general public for reference and educational purposes only. The content is not meant to be complete or exhaustive or to be applicable to any specific individual’s medical condition. This analysis is not an attempt to practice medicine or provide medical advice, and it should not be used to make a diagnosis or to replace or overrule a physician’s judgment. The content on this website is not intended to be a substitute for professional medical advice, diagnosis, or treatment. Always consult with a qualified and licensed physician, and follow their advice without delay regardless of anything read on this website.