在ggplot中, 可以使用 theme() 函数将图例移动到上方。
示例代码如下:
ggplot(data, aes(x, y, color = group)) +
geom_point() +
theme(legend.position = "top")
其中,legend.position = "top"表示将图例置于图的上方。
除了 "top", 你还可以使用其它位置( "bottom", "left", "right" ) 来定位图例
在ggplot中, 可以使用 theme() 函数将图例移动到上方。
示例代码如下:
ggplot(data, aes(x, y, color = group)) +
geom_point() +
theme(legend.position = "top")
其中,legend.position = "top"表示将图例置于图的上方。
除了 "top", 你还可以使用其它位置( "bottom", "left", "right" ) 来定位图例