忽略RColorBrewer调色板上的更亮的颜色以在ggplot2中使用

时间:2018-09-11 13:46:06

标签: r ggplot2

我想在ggplot(条形图)中使用RColorBrewer中“橙色”调色板中的较深颜色。但是,我无法。救命。下面是示例代码:

my_palette = brewer.pal(n = 9, "Oranges")[4:9]


### Bar Plots ###
ggplot(Sample_df, aes(x = Sample_Score), fill = Sample_Score) + 
  geom_bar(stat = "count", width = 0.8) + scale_fill_brewer(palette= my_palette)  + scale_y_log10(labels = comma) +
   labs(title="Distribution of customers according to Sample Score",x="Sample Score", y="Number of Customers") +
     theme(plot.title = element_text(face = "bold", size = 10),
        axis.title.x = element_text(face = "bold", size = 8),  
        axis.title.y = element_text(face = "bold", size = 8), legend.position="none")

1 个答案:

答案 0 :(得分:1)

这是因为您正在使用scale_fill_brewer()。该命令需要一个RColorBrewer调色板名称。 (例如"Oranges")。它无法读取您的自定义调色板名称my_palette,而是使用scale_fill_manual()

我创建了一个自己的可复制示例:

library(RColorBrewer)
library(ggplot)

set.seed(1234)
df <- data.frame(x=runif(10,0,1), y=runif(10,0,1), c=factor(sample(1:5,10,replace=T)))

ggplot(data=df, aes(x=x,y=y)) + geom_point(aes(color=c)) + scale_color_brewer(palette = 'Oranges')

如您所见,我正在调用RColorBrewer调色板"Oranges"。正如您提到的,这些颜色非常浅,您可能只想使用较深的颜色。为此,您可以制作一个自定义调色板,并使用scale_color_manual()(或您的情况下为scale_fill_manual())而不是scale_color_brewer()进行调用。

my_palette <- brewer.pal(name="Oranges",n=9)[4:9]

ggplot(data=df, aes(x=x,y=y)) + geom_point(aes(color=c)) + scale_color_manual(values = my_palette)

现在将使用您在my_palette中指定的颜色