ggplot,图例不会移至底部

时间:2019-06-19 16:31:28

标签: r ggplot2

我试图将图例放在一行的底部。

guides(fill= guide_legend(nrow = 1))  

theme_set(theme_bw() + theme(legend.position = 'bottom', legend.direction = "horizontal")) 

我尝试了指南和主题,但传说并没有移到谷底。

谢谢!

1 个答案:

答案 0 :(得分:0)

也许尝试在theme之外调用theme_set

代替:

theme_set(theme_bw() + theme(legend.position = 'bottom', legend.direction = "horizontal"))

尝试:

theme_set(theme_bw()) +
theme(legend.position = 'bottom', legend.direction = "horizontal")