R语言ggplot的图例怎么换成上面
时间: 2023-02-08 07:28:46 浏览: 48
在ggplot中, 可以使用 theme() 函数将图例移动到上方。
示例代码如下:
```
ggplot(data, aes(x, y, color = group)) +
geom_point() +
theme(legend.position = "top")
```
其中,legend.position = "top"表示将图例置于图的上方。
除了 "top", 你还可以使用其它位置( "bottom", "left", "right" ) 来定位图例
阅读全文