In the figure, is it possible to jitter the state abbreviation labels a bit so they don't overlap? If I use check_overlap = TRUE
, then it removes some observations that overlap, and I don't want that. I also don't want the geom_label_repel
, since it has the labels stick out and move across the 45 degree line I included (which I don't want to happen)
Here's the pertinent part of my code for reference:
ggplot(df, aes(x = huff_margin_dem, y = margin16dem_state, label = abbrev)) +
geom_abline(intercept = 0) +
geom_text(fontface = "bold")
ggrepel
more closely to look for control of the label movement. – Syncopated