ggplot2:barplot,颜色是y轴值的函数

时间:2013-11-21 11:48:55

标签: r ggplot2 bar-chart

我有这个简单的代码(数据+条形图):

dat <- c('Jan','Feb','Mar', 'Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')
val <- c(-2.5, 3, 2.5, -3.3, -1, 0.2, 6, 4.3, 5.5, 2, -1.9, -2.3)
df <- data.frame(dat, val)
bar <- ggplot(data = df, aes(x = factor(dat, levels = month.abb), y = val)) +
    geom_bar(stat = 'identity')
print(bar)

在其他地方,我使用以下调色板创建了热图:

# Palette
LtoM <-colorRampPalette(c('red', 'yellow' ))
Mid <- "snow3"
MtoH <-colorRampPalette(c('lightgreen', 'darkgreen'))

由以下人员调用:

scale_fill_gradient2(low = LtoM(100), mid = Mid, high = MtoH(100))

现在我想为我的条形图使用类似的调色板,也就是说我希望每个条形图中的颜色都是高度的函数(从最小y到最小y的一些等级从红色到最高y的绿色)。 / p>

我该怎么办?

1 个答案:

答案 0 :(得分:5)

您基本上使用的是当前代码。只需添加scale_fill_gradient函数。

bar <- ggplot(data = df, aes(x = factor(dat, levels = month.abb), y = val, 
              fill=val)) +
       geom_bar(stat = 'identity') + 
       scale_fill_gradient2(low=LtoM(100), mid='snow3', 
       high=MtoH(100), space='Lab')

custom colors

但是,允许scale_fill_gradient2处理渐变效果非常好

bar <- ggplot(data = df, aes(x = factor(dat, levels = month.abb), y = val, 
              fill=val)) + 
       geom_bar(stat = 'identity') + 
       scale_fill_gradient2(low='red', mid='snow3', high='darkgreen', space='Lab')

generated colors