gpt4 book ai didi

R ggplot2 theme_set 色盲或二色性颜色?

转载 作者:行者123 更新时间:2023-12-03 22:16:27 28 4
gpt4 key购买 nike

在 R ggplot2 中,您可以 theme_set(theme_grey() + "colorblind_function"在代码顶部而不是添加 + scale_color_colorblind()每个情节?

我过去使用过的一些 ggthemes:

show_col(colorblind_pal()(8))
show_col(tableau_color_pal("colorblind10")(10))
show_col(dichromat_pal("BluetoOrange.10")(10))

最佳答案

您可以通过覆盖 scale_colour_discrete 来设置默认色标(对于 fill ,对于连续尺度等,类似):

library(ggplot2)
library(ggthemes)

scale_colour_discrete <- scale_colour_colorblind

ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point(size = 2)

enter image description here

关于R ggplot2 theme_set 色盲或二色性颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50262224/

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