Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created December 17, 2020 10:40
Show Gist options
  • Save darioappsilon/8f8bf97ac87c0bb842a8f431b7034838 to your computer and use it in GitHub Desktop.
Save darioappsilon/8f8bf97ac87c0bb842a8f431b7034838 to your computer and use it in GitHub Desktop.
006_scatter_plots
library(ggrepel)
ggplot(mtcars, aes(x = mpg, y = hp)) +
geom_point(size = 5, color = "#0099f9") +
geom_text_repel(label = rownames(mtcars), size=3.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment