I have a simple plot:
require(tidyverse)
plot <- data_frame(
year = 1:4,
value = c(5,3,6,7)
) %>%
ggplot(aes(year,value))+
geom_point()
plot
Is it possible to use an icon to take the place of the points on the plot? Specifically this icon?
It can be downloaded here.