The Global AI Skills Divide: Who Is Benefiting From the AI Boom?

AI is often discussed as a future threat, but job market data shows the shift has already started. Employers are increasingly asking for AI-related skills, yet this demand is not rising equally across countries. This creates an emerging AI skills divide: workers in some countries may gain earlier access to new high-skill opportunities, while others may be left behind as labour markets change.

Why Should Readers Care?

Artificial Intelligence is expected to influence almost every industry, from healthcare and education to finance and manufacturing. While much public discussion focuses on whether AI will replace jobs, a more immediate question is whether workers possess the skills employers are already demanding. Understanding where AI-related job demand is growing can help students, graduates, and policymakers prepare for future workforce changes.

library(tidyverse)
library(plotly)
library(DT)
library(scales)

url <- "https://ourworldindata.org/grapher/share-artificial-intelligence-job-postings.csv"

ai <- read_csv(url)

names(ai)[4] <- "ai_job_share"

countries <- c(
  "Australia",
  "United States",
  "United Kingdom",
  "Canada",
  "Germany",
  "France",
  "India",
  "Japan"
)

ai_focus <- ai %>%
  filter(Entity %in% countries)

Conclusion

The findings show that AI is already reshaping labour markets worldwide. While demand for AI-related skills is increasing across many countries, the pace of growth varies considerably. The results highlight the importance of AI education and workforce readiness in an increasingly technology-driven economy. # References

Our World in Data. (2026). Share of artificial intelligence jobs among all job postings. https://ourworldindata.org/grapher/share-artificial-intelligence-job-postings

Stanford University. (2026). AI Index Report 2026.