4

我在 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()

我想将灰色的颜色顺序从左到右从最亮到最暗,同时保持条形本身的顺序相同。我用来反转颜色渐变顺序的代码似乎不起作用。

4

2 回答 2

11

使用可重现的示例会更容易,但是:

y + scale_fill_grey(start=0.8, end=0.2)
于 2012-09-24T14:20:51.747 回答
-1

你可以试试 + scale_y_reverse()

于 2018-03-15T23:13:49.707 回答