I’ve written afewtimes about using an image as an x-axis label, and the solutions have been slowly improving. This one blows all of them out of the water. Claus Wilke (@ClausWilke) now has a {ggtext} package which can very neatly add images as x-axis labels! This makes the solution as simple as library(ggplot2) library(ggtext) library(rvest) ## GDP per capita, top 11 countries url <- "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)_per_capita" html <- xml2::read_html(url) g...