Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created December 17, 2020 10:41
Show Gist options
  • Save darioappsilon/cd28c5ec573e643ede24d98446d5ba5d to your computer and use it in GitHub Desktop.
Save darioappsilon/cd28c5ec573e643ede24d98446d5ba5d to your computer and use it in GitHub Desktop.
007_scatter_plots
ggplot(mtcars, aes(x = mpg, y = hp)) +
geom_point(size = 5, color = "#0099f9") +
geom_label_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