我想选择colorblind_pal()
来自的特定颜色ggthemes
这有效:
library(ggplot2)
library(ggthemes)
p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg,
colour = factor(gear))) + facet_wrap(~am)
p + theme_igray() + scale_colour_colorblind()
现在我想colorblind_pal()
为我的情节选择特定的颜色。我该如何选择它们?
我尝试以下但没有成功:
my_palette <- palette(c("#000000","#F0E442","#D55E00"))
p + theme_igray() + scale_colour_colorblind(my_palette)