I have two dimensional data from some different users who all have a
name.
I made a 2d plot with some points from the data, now i want to add the
names of the users next to
each corresponding point in the 2d graph, is that possible?
Thanks!
If your data file has three columns, the 3rd one containing the names,
you could do the following:
p 'foo' u 1:2, '' u 1:2:3 w labels offset 0.3, 0.6
where your labels will be at position 1:2, offset by 0.3, 0.6
I hope this helps,
Zoltán