gpt4 book ai didi

r - ggplot2中平滑曲线的默认颜色是什么?

转载 作者:行者123 更新时间:2023-12-01 11:29:05 26 4
gpt4 key购买 nike

我想只使用两种颜色来制作我的报告。我想知道 ggplot2 中平滑曲线的默认颜色是什么,以便我可以相应地命名我的条形/线条/饼图。谢谢。

最佳答案

按照@Konrad 的评论指向 here :

library("ggplot2")
dd <- data.frame(x=1:10,y=1:10)
g1 <- ggplot(dd,aes(x,y))+geom_smooth()
unique(ggplot_build(g1)$data[[1]]$colour) ## "#3366FF"
plot(1,1,cex=8,pch=16,col="#3366FF")

enter image description here

这实际上不是 emulate ggplot colour palette 的完全重复:如果我们建立一个三类彩色图加上一个平滑我们得到:
sapply(ggplot_build(g1)$data,function(x) unique(x$colour))
## [[1]]
## [1] "#F8766D" "#00BA38" "#619CFF" # three colours from colour wheel
## [[2]]
## [1] "#3366FF" # geom_smooth colour

关于r - ggplot2中平滑曲线的默认颜色是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34724501/

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