Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to position the legend in the bottom left corner and move the title on the right or on the top?

Tags:

r

ggplot2

I have been trying to find this question answered before, but I couldn't find it anywhere. I have created a ggplot graph and would like to show a edit: horizontal legend under the plot. The legend should be in the bottom left corner and the title should be on its right or above. I managed to rotate the legend, but I can't get the title to move where I want it. Can anybody help?

My_Theme = theme(
legend.text = element_text(size=12),
legend.title.align =0,
legend.position = "bottom", 
legend.box = "horizontal", 
legend.title = element_text(size=14, vjust=0.5, hjust = 0.3))

This gets me this weird looking legend placement:

Screenshot of legend

I want the legend to move to the left, but have its title on the right or above. At the moment the title blurs in with the legend and makes it hard to read.

Can anybody help? Thanks a lot and nice holidays :)

like image 942
clarulatta_elphadora Avatar asked Oct 19 '25 03:10

clarulatta_elphadora


1 Answers

Using mtcars as example data this could be achieved like so:

  1. The position of the title could be set via guide_colorbar and the argument title.position.

  2. The legend could be positioned in the bottom left corner using theme options legend.position = "bottom" and legend.justification = "left".

  3. For the direction of the legend I was not sure about your desired result. As you said you want a vertical legend I used legend.direction="vertical".

library(ggplot2)

ggplot(mtcars, aes(hp, mpg, color = mpg)) +
  geom_point() +
  labs(color = "I'm a long\nlegend title") +
  guides(color = guide_colorbar(title.position = "top")) +
  theme(
    legend.text = element_text(size=12),
    legend.title.align = 0,
    legend.position = "bottom", 
    legend.justification = "left",
    legend.direction = "vertical",
    legend.title = element_text(size=14, vjust = .5, hjust = .3))

like image 81
stefan Avatar answered Oct 20 '25 17:10

stefan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!