gpt4 book ai didi

r - R 或 ggplot2 中的默认绘图颜色是什么?

转载 作者:行者123 更新时间:2023-12-01 17:19:21 24 4
gpt4 key购买 nike

我正在 ggplot2 中绘图,并且想要添加一些与点颜色相同的线。谁能告诉我在 R 中绘图时默认的颜色代码是什么?例如,以下 6 种颜色的代码是什么:

df <- structure(list(type = structure(1:6, .Label = c("a", "b", "c", 
"d", "e", "f"), class = "factor"), value = 1:6), .Names = c("type",
"value"), class = "data.frame", row.names = c(NA, -6L))

library(ggplot2)
ggplot(df, aes(x=value, y=value, color=type)) + geom_point(shape=21, size=4)

谢谢!

最佳答案

要查看使用什么颜色来绘制绘图,您可以使用函数ggplot_build(),然后查看该对象的数据部分(在颜色列中是代码) 。

p <- ggplot(df, aes(x = value, y = value, color = type)) +
geom_point(shape = 21, size = 4)

ggplot_build(p)$data
# [[1]]
# colour x y PANEL group
# 1 #F8766D 1 1 1 1
# 2 #B79F00 2 2 1 2
# 3 #00BA38 3 3 1 3
# 4 #00BFC4 4 4 1 4
# 5 #619CFF 5 5 1 5
# 6 #F564E3 6 6 1 6

关于r - R 或 ggplot2 中的默认绘图颜色是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25211078/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com