---
title: Energy Consumption & Human Development
tags: [energy, data, climate]
draft: false
description: "A chart comparing per-capita energy consumption to the UN's Human Development Index."
og_image: /images/energy-hdi-og.png
---

An interactive chart comparing per-capita energy consumption to the Human Development Index (HDI) across countries, with population-weighted markers and a toggle between linear and log x-axis scales.

<iframe
  id="energy-hdi-frame"
  src="/charts/energy-hdi.html"
  title="Per-Capita Energy Consumption vs Human Development Index"
  style="width: 100%; height: 900px; border: 1px solid #eeeeee; border-radius: 8px; display: block;"
  scrolling="no"
  loading="lazy">
</iframe>
<script>
  window.addEventListener("message", (event) => {
    if (event.origin !== window.location.origin) return;
    if (event.data && event.data.type === "energy-hdi-height") {
      const frame = document.getElementById("energy-hdi-frame");
      if (frame) frame.style.height = event.data.height + "px";
    }
  });
</script>

Data is pulled from Our World in Data (energy, HDI, population, and continent classifications); see the sources cited within the chart for details and original providers.
