Back
You can use geom_text, with aes label. You can also use hjust, vjust to adjust text position.
Below is the code for the same:-
ggplot(nba, aes(x= MIN, y= PTS, colour="green", label=Name))+geom_point() +geom_text(aes(label=Name),hjust=0, vjust=0)
31k questions
32.8k answers
501 comments
693 users