我在 ggplot2 中有一个简单的条形图。我的条形图使用“灰色”刻度;默认顺序是从左到右从最暗到最亮。这是我的代码的样子:
ggplot.3plus<-ggplot(summary.3plus, aes(x=sp1, y=fract.mean, fill=age.cat)) +
geom_bar(position=position_dodge())+ coord_cartesian(ylim = c(1, 1.175))+
geom_errorbar(aes(ymin=fract.mean-se, ymax=fract.mean+se),
width=.2, # Width of the error bars
position=position_dodge(.9))
ggplot.3plus<-ggplot.3plus+scale_fill_grey()
我想将灰色的颜色顺序从左到右从最亮到最暗,同时保持条形本身的顺序相同。我用来反转颜色渐变顺序的代码似乎不起作用。