我正在尝试将颜色更改为stacked bar chart
中ggplot
中的特定变量。
我找到了这个链接,但这不是我想要的。 R ggplot Changing color of one variable in stacked bar graph
我想将Brand7
颜色更改为黑色,但其他品牌应使用不同的颜色进行着色。
我想要的是,使用某种条件为某个特定品牌选择颜色,其他品牌可以像以前一样。
另外,我附上了可复制的例子。
set.seed(1992)
n=8
Category <- sample(c("Car", "Bus", "Bike"), n, replace = TRUE, prob = NULL)
Brand <- sample("Brand", n, replace = TRUE, prob = NULL)
Brand <- paste0(Brand, sample(1:14, n, replace = TRUE, prob = NULL))
USD <- abs(rnorm(n))*100
df <- data.frame(Category, Brand, USD)
ggplot(df, aes(x=Category, y=USD, fill=Brand)) +
geom_bar(stat='identity')
答案 0 :(得分:3)
你可以使用这样的东西,访问标准的ggplot-colors并替换你需要的颜色。
访问ggplot-colors,source
的功能gg_color_hue <- function(n) {
hues = seq(15, 375, length=n+1)
hcl(h=hues, l=65, c=100)[1:n]
}
#make custom palette
mycols <- gg_color_hue(length(unique(df$Brand)))
names(mycols) <- unique(df$Brand)
mycols["Brand7"] <- "black"
#use palette in scale_fill_manual
ggplot(df, aes(x=Category, y=USD, fill=Brand)) +
geom_bar(stat='identity')+
scale_fill_manual(values=mycols)