I want to scatter plto a bunch of dots, attaching a label to each. However, the label
command gives the first label to each dot. Sample code:
using Plots
xs = [1,2,3]
ys = [2,4,6]
colors = [:red :blue :green]
labels = ["datapoint 1" "datapoint 2" "datapoint 2"]
scatter(xs,ys,color=colors,label=labels)
gives