Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to move legend up closer to the x-axis label in ggplot2

Tags:

r

ggplot2

I have am creating a function to create dumbbell graphs with the legend positioned on the bottom. However, it's too far away from the title of the x-axis. I wanted to move it up slightly so that it is 10 pixels below the x-axis.

Here's the code:

vertical_theme = theme_bw(base_family = "Georgia") +
  theme(
    panel.border = element_rect(color = "black", fill=NA),
    axis.title.x = element_text(hjust=0.5, size = 10, margin=margin(t=10, b=10)),
    axis.text.y = element_text(size=10, margin=margin(r=10), color="black", hjust=0),
    axis.text.x = element_text(size=10, margin=margin(t=10), color="black"),
    axis.title.y = element_blank(),
    legend.title = element_blank(),
    legend.position= "bottom",
    legend.text = element_text(size = 10, margin = margin(r = 10)),
    panel.grid.major.y = element_blank() ,
    panel.grid.minor.y = element_blank(),
    panel.grid.major.x = element_line(size=1), 
    panel.grid.minor.x = element_blank(),
    plot.margin = margin(10, 30, 10, 10, "pt"))

dumbbell = function(df) {
  ggplot(df, aes(pct_responses, Domain)) +
    geom_line(aes(group=Domain)) +
    geom_point(aes(shape=race), size=5, color="#3bbae0" ) +
    vertical_theme + 
    scale_shape_manual(labels = c("Black Students", "White Students"), 
                       values=c(15, 19)) +
    scale_x_continuous(expand = c(0, 0), 
                       limits=c(0,100), 
                       breaks = seq(0, 100, by=20),
                       labels = function(x) paste0(x,"%")) +
    labs(x = "% of Responses") +
    scale_y_discrete(labels = wrap_format(40))
}

dumbbell(df)

Here's a screenshot (labels on y-axis removed because that data isn't public yet):

enter image description here

I tried to adjust the legend.position manually with legend.position = c(0.5, 0) (playing around with various different numbers) but then the legend overlaps with "% of Responses."

like image 675
user3710004 Avatar asked Sep 05 '25 06:09

user3710004


1 Answers

Use theme(legend.margin=margin(-10, 0, 0, 0)) to move the legend up. Adjust -10 as needed.

like image 118
Kent Johnson Avatar answered Sep 07 '25 21:09

Kent Johnson