Skip to content
Prev 178499 / 398502 Next

Bumps chart in R

]
Or just add the text layer separately:

qplot(year, value, data = data, geom = "line", group = countries) +
  geom_text(aes(label = countries), subset = .(year == 1990),
    hjust = 1, size = 3, lineheight = 1)

Hadley