r语言图例设置在图外ggplot2
时间: 2024-05-16 11:12:19 浏览: 155
R语言基础与ggplot2绘图
可以通过在 ggplot 函数内使用 theme 函数,设置 legend.position 为 "outside" 来将图例设置在图外。
示例代码:
```
library(ggplot2)
data(mtcars)
ggplot(mtcars, aes(x=mpg, y=disp, color=cyl)) +
geom_point() +
labs(title="Scatter plot of mpg vs disp", x="Miles per gallon", y="Displacement") +
theme(legend.position="outside")
```
运行示例代码后,会生成一张图,图例会出现在图的右侧。
阅读全文