AI is no longer a technology of the future.
Artificial intelligence is quickly changing innovation, work, and education. Today’s college students are getting ready for a workforce that might be considerably different from what it was ten years ago. Employers are looking for AI-related skills, countries are investing billions of dollars in AI development, and the use of AI tools in the workplace is growing.
While AI offers tremendous potential for creativity and productivity, it also poses substantial concerns regarding future job paths and labour preparedness. Will these modifications help pupils, or will they find it difficult to keep up with the quickly advancing technologies?
This visual story explores how AI adoption, employment demand, research activity, and investment are changing the nature of work in the future using data from Our World in Data and the Stanford AI Index.
How quickly is AI becoming part of everyday work?
# Chart 1 : AI Has Moved From Experiment To Workplace Reality
adoption <- companies %>%
filter(Entity == "All geographies")
p1 <- ggplot(
adoption,
aes(
Year,
`Organizations reporting having adopted AI`
)
) +
geom_line(
linewidth = 1.5,
colour = "#1F5A96"
) +
geom_point(
size = 3,
colour = "#D32F2F"
) +
labs(
title = "AI Adoption Has Become Mainstream",
x = "Year",
y = "% of Organisations Using AI"
)
ggplotly(p1,tooltip = c("x","y","colour"),width = 600,
height = 450)
It’s crucial to comprehend the extent to which AI has already been embraced before talking about jobs and career paths. AI may have little effect on pupils if it stays a specialised technology. Regardless of their line of work, future graduates are more likely to come across AI tools due to their widespread deployment.
Over time, the percentage of businesses adopting AI has grown significantly. AI is no longer limited to research labs and tech firms. Rather, technology is being incorporated into routine business processes.
An significant question is raised by growing adoption. What talents are companies looking for in future hires if they are employing AI more and more?
Are graduates entering a different labour market than previous generations?
# Chart 2 : Employers Want Different Skills
top_jobs <- jobs %>%
filter(
Entity %in%
c(
"Australia",
"United States",
"United Kingdom",
"Canada"
)
)
p2 <- ggplot(
top_jobs,
aes(
Year,
`Share of artificial intelligence jobs among all job postings`,
colour = Entity
)
) +
geom_line(linewidth = 1.2) +
labs(
title = "Demand for AI Skills Is Increasing",
x = "Year",
y = "% AI Job Postings"
)
ggplotly(p2,width = 600, height = 450)
One of the best ways to assess labour market demand is through job ads. Employers may look more for employees with AI-related abilities as businesses incorporate AI into their operations.
In a number of developed economies, the percentage of job advertisements pertaining to AI has increased. This implies that graduates from a variety of fields may find greater value in AI literacy.
AI skills are not in high demand by accident. These job opportunities are the result of a worldwide research and innovation environment.
Which countries are leading AI research and innovation?
# Chart 3: Who Is Creating AI Knowledge?
# Selecting major AI countries
research_plot <- research %>%
filter(
Entity %in% c(
"Australia",
"United States",
"United Kingdom",
"Canada",
"China",
"Singapore"
)
) %>%
filter(
!is.na(`AI scholarly publications per million people - Field: All`)
)
p3 <- ggplot(
research_plot,
aes(
x = Year,
y = `AI scholarly publications per million people - Field: All`,
colour = Entity,
size = `AI scholarly publications per million people - Field: All`,
text = paste(
"<b>", Entity, "</b>",
"<br>Year:", Year,
"<br>AI Publications per Million:",
round(
`AI scholarly publications per million people - Field: All`,
1
)
)
)
) +
geom_point(
alpha = 0.7
) +
geom_smooth(
se = FALSE,
linewidth = 1
) +
labs(
title = "Who Is Creating the Knowledge Behind AI?",
subtitle = "AI research output has grown rapidly among leading countries",
x = "Year",
y = "AI Publications Per Million People",
size = "Publications"
) +
scale_colour_manual(
values = conversation_cols
)+
theme_minimal() +
theme(
plot.title = element_text(
size = 16,
face = "bold"
),
plot.subtitle = element_text(
size = 11
),
legend.position = "right"
)
ggplotly(
p3,
tooltip = "text",
width = 600,
height = 450
)
The development of AI technologies depends heavily on research. The path of future innovation and capability growth is frequently influenced by nations that produce significant amounts of AI research.
The majority of AI research is focused in a limited number of nations. These nations have a significant role in the technologies that could affect communities and workplaces in the future.
While conducting research is crucial, it cannot produce revolutionary AI systems on its own. Examining which nations are transforming knowledge into competence is the next stage.
Which countries are turning research into powerful AI systems?
# Chart 4: The Global Race To Build AI
research_latest <- research %>%
group_by(Entity) %>%
slice_max(Year, n = 1) %>%
ungroup()
systems_latest <- systems %>%
group_by(Entity) %>%
slice_max(Year, n = 1) %>%
ungroup()
# Join datasets
chart4_data <- inner_join(
research_latest,
systems_latest,
by = "Entity"
)
# Remove missing values
chart4_data <- chart4_data %>%
filter(
!is.na(`AI scholarly publications per million people - Field: All`),
!is.na(`Cumulative number of large-scale AI systems by country`)
)
highlight <- chart4_data %>%
filter(
Entity %in% c(
"United States",
"China",
"United Kingdom",
"Canada",
"Australia",
"Singapore"
)
)
p4 <- ggplot(
chart4_data,
aes(
x = `AI scholarly publications per million people - Field: All`,
y = `Cumulative number of large-scale AI systems by country`,
colour = Entity
)
) +
geom_point(
aes(
size = `Cumulative number of large-scale AI systems by country`
),
alpha = 0.75
) +
geom_text_repel(
data = highlight,
aes(label = Entity),
size = 4,
max.overlaps = 20
) +
labs(
title = "The Global Race to Build AI",
subtitle = "Countries producing more AI research often lead in developing large-scale AI systems",
x = "AI Publications Per Million People",
y = "Large-Scale AI Systems",
size = "AI Systems"
) +
theme_minimal() +
theme(
plot.title = element_text(
face = "bold",
size = 16
),
plot.subtitle = element_text(
size = 11
)
)
ggplotly(
p4,
tooltip = c("x", "y", "colour"),
width = 600,
height = 450
)
Transformative AI technologies are not produced by research alone. In order to construct large-scale AI systems, nations must also have the infrastructure, capital, and knowledge required. Which nations are effectively translating information into technological capabilities can be determined by comparing research output with AI system development.
Large-scale AI system development is centred in a few nations. The capacity to develop sophisticated AI capabilities seems to be directly linked to robust research environments.
The nations at the leading edge of AI research and development might also be producing the most promising job prospects in the future.
Which countries are creating the strongest opportunities in an AI-driven future?
# Chart 5: Where Will Future AI Opportunities Be?
# Latest available job data for each country
job_latest <- jobs %>%
group_by(Entity) %>%
slice_max(Year, n = 1) %>%
ungroup()
# Latest available research data for each country
research_latest <- research %>%
group_by(Entity) %>%
slice_max(Year, n = 1) %>%
ungroup()
# Merge datasets
combined <- inner_join(
job_latest,
research_latest,
by = "Entity"
)
# Remove missing values
combined_clean <- combined %>%
filter(
!is.na(`Share of artificial intelligence jobs among all job postings`),
!is.na(`AI scholarly publications per million people - Field: All`)
)
# Create labels for hover information
combined_clean <- combined_clean %>%
mutate(
hover_text = paste(
"<b>", Entity, "</b>",
"<br>AI Job Postings:",
round(`Share of artificial intelligence jobs among all job postings`, 2), "%",
"<br>AI Publications per Million:",
round(`AI scholarly publications per million people - Field: All`, 1)
)
)
# Create chart
p5 <- ggplot(
combined_clean,
aes(
x = `AI scholarly publications per million people - Field: All`,
y = `Share of artificial intelligence jobs among all job postings`,
colour = Entity,
text = hover_text
)
) +
geom_point(
size = 5,
alpha = 0.8
) +
geom_text_repel(
aes(label = Entity),
size = 3.5,
max.overlaps = 20
) +
labs(
title = "Research Output and AI Job Opportunities",
subtitle = "Countries producing more AI research often show stronger demand for AI skills",
x = "AI Scholarly Publications per Million People",
y = "Share of AI Job Postings (%)"
) +
theme_minimal() +
theme(
plot.title = element_text(
size = 16,
face = "bold"
),
plot.subtitle = element_text(
size = 11
),
legend.position = "none"
)
ggplotly(
p5,
tooltip = "text",
width = 600,
height = 450
)
When they enter the workforce, students need to know where opportunities are likely to arise in the future. Research output and labour market demand can be compared to determine which nations are developing robust AI ecosystems.
Demand for AI talent is often higher in nations with high levels of AI development. This link implies that future employment chances could be influenced by investments made in knowledge generation.
According to the data, artificial intelligence is concurrently changing innovation, work, and education. Employers are requiring AI-related skills, organisations are using AI, and nations are making significant investments in AI research and development.
Learning about AI technologies is not the only issue for students. Rather, success might rely on learning how to collaborate well with AI while using distinctively human abilities like creativity, critical thinking, and moral judgement.
AI is already influencing the workforce of the future. Whether today’s pupils will be ready to succeed in it is the question.