Figure Caption

Let’s create a plot with a caption below it:

library(tidyverse)

mpg %>%
  ggplot(aes(x = reorder(class, hwy), y = hwy, fill = class)) +
  geom_boxplot() +
  xlab("class") +
  theme(legend.position = "none")

Figure: Here is a really important caption.