我正在尝试使用 ggplot 创建几个图表。这些图表是一系列条形图,它们也一起描述了一条线示例 (顺便说一句,是的,我意识到调色板很难看,它对色盲很友好,这对我的观众很重要)
我的问题是我需要制作几个这样的图表,并且我希望颜色在所有这些图表中保持一致。由于“类型”变量在我将要使用的几个数据集中以不同的顺序出现,因此我需要为每种类型手动设置颜色。我认为这个问题:如何在 ggplot2 直方图中手动填充颜色会有答案,但是当我尝试这样做时,它会将图例中的名称更改为颜色的十六进制定义,但颜色本身会回到 ggplot 的默认值调色板。
这是我到目前为止的代码:
cbbPalette <- c("#000000", "#E69F00", "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00", "#CC79A7")
ggplot()+
scale_fill_manual(values=cbbPalette)+
geom_bar(data=subset(eten, Type=="Waste Wood"), aes(x=Tprod, y=acost, fill=cbbPalette[1], width=MGGEY+25), stat="identity")+
geom_bar(data=subset(eten, Type=="Agricultural Residue"), aes(x=Tprod, y=acost, fill=cbbPalette[2], width=MGGEY+25), stat="identity")+
geom_bar(data=subset(eten, Type=="Forest Residue"), aes(x=Tprod, y=acost, fill=cbbPalette[3], width=MGGEY+25), stat="identity")+
geom_bar(data=subset(eten, Type=="Herbaceous Energy Crop"), aes(x=Tprod, y=acost, fill=cbbPalette[4], width=MGGEY+25), stat="identity")+
geom_bar(data=subset(eten, Type=="MSW"), aes(x=Tprod, y=acost, fill=cbbPalette[5], width=MGGEY+25), stat="identity")+
scale_y_continuous("Average Cost", labels = dollar, expand=c(0,0))+
scale_x_continuous("Million Gallons of Gasoline Equivalent", expand=c(0,0))+
theme(legend.position="bottom", panel.background=element_rect(colour = NA, fill = "white"), axis.line=element_line(), panel.grid.major.y=element_line(colour="black"), panel.grid.minor=element_blank())
我的 R 专业知识水平相当低,所以我可能遗漏了一些简单的东西,但我无法独自完成它。在此先感谢您的帮助。
更新:我无意中粘贴了错误版本的代码,“填充”命令又回到了我的最佳猜测。示例数据集在这里。