Label points in geom_point

The data I’m playing with comes from the internet source listed below nba <- read.csv(“http://datasets.flowingdata.com/ppg2008.csv”, sep=”,”) What I want to do, is create a 2D points graph comparing two metrics from this table, with each player representing a dot on the graph. I have the following code: nbaplot <- ggplot(nba, aes(x= MIN, y= PTS, colour=”green”, … Read more