There's a Geom.label <http://gadflyjl.org/geom_label.html> element you can use. Although I don't think it can handle different orientations yet. So something like this:
using DataFrames labels = DataFrame(x =rand(3), y = rand(3), label = ["one", "two", "three"]) plot(labels, x = "x", y = "y", label = "label", Geom.label) On Friday, October 24, 2014 4:11:43 PM UTC-7, Keyan Ghazi-Zahedi wrote: > > I would like to freely place some text into my plot by giving some > coordinates and an orientation. Is that possible? > > Cheers, > Keyan >
