r语言 ggplot 图例
时间: 2023-11-06 16:05:25 浏览: 147
27.ggplot2图例修改参数大全(移除、标题、标签、顺序、背景、位置等,内含独门绝技).pdf
5星 · 资源好评率100%
好的,关于 R 语言中 ggplot 的图例,你可以使用 `scale_fill_manual()` 或 `scale_color_manual()` 函数来手动设置图例的颜色和标签。具体用法如下:
```R
# 创建一个数据框
df <- data.frame(
x = c(1, 2, 3),
y = c(4, 5, 6),
group = c("A", "B", "C")
)
# 绘制散点图,并手动设置颜色和标签
library(ggplot2)
ggplot(df, aes(x, y, color = group)) +
geom_point() +
scale_color_manual(values = c("red", "blue", "green"),
labels = c("Group A", "Group B", "Group C"))
```
这里的 `values` 参数用于设置颜色,`labels` 参数用于设置标签。
阅读全文