Is there a way to add labels to each point in a plot? I did this on an image editor just to convey the idea: 1.
The original one was generated with:
qplot(pcomments, gcomments , data = topbtw, colour = username)

|
|
|
To follow up on Andrie's excellent answer, I frequently employ two methods to add labels to a subset of points on a plot if I need to highlight specific data. Both are demonstrated below:
|
|||||
|
|
Yes, use geom_text() to add text to your plot. Here is an example:
See the on-line documentation for more information: http://had.co.nz/ggplot2/geom_text.html
|
|||
|
|