我试图将图例放在一行的底部。
guides(fill= guide_legend(nrow = 1))
theme_set(theme_bw() + theme(legend.position = 'bottom', legend.direction = "horizontal"))
我尝试了指南和主题,但传说并没有移到谷底。
谢谢!
答案 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")