In [3]:
using Plots; winston()
default(size=(600,400),leg=false)
y = rand(10)
plot(y, ann=[(3,y[3],"this is #3"), (8,y[8],"this is #8")])
Out[3]:
In [4]:
plot(y, ann=(3,y[3],"this is #3"))
annotate!([(5,y[5],"this is #5"),(8.4,y[10],"this is #10")])
Out[4]:
In [ ]:
In [ ]: