mcSamuelDataSci / CACommunityBurden

11 stars 11 forks source link

Explore directly labeling lines with ggrepel #79

Open mcSamuelDataSci opened 4 years ago

mcSamuelDataSci commented 4 years ago

library(ggrepel)

NOT like this, but....:

ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars))) + geom_text_repel() + geom_point(color = 'red') + theme_classic(base_size = 16)