按标志在ggplot2中设置特定填充颜色

时间:2023-01-14 15:56:23

Hi wanted to adjust the following chart so that the values below zero are filled in red and the ones above are in dark blue. How can I do this with ggplot2?

您想调整以下图表,以便零以下的值填充为红色,上面的值为深蓝色。我怎么能用ggplot2做到这一点?

   mydata = structure(list(Mealtime = "Breakfast", Food = "Rashers", `2002` = 9.12, 
                            `2003` = 9.5, `2004` = 2.04, `2005` = -20.72, `2006` = 18.37, 
                            `2007` = 91.19, `2008` = 94.83, `2009` = 191.96, `2010` = -125.3, 
                            `2011` = -18.56, `2012` = 63.85), .Names = c("Mealtime", "Food", "2002", "2003", "2004", "2005", "2006", "2007", "2008","2009", "2010", "2011", "2012"), row.names = 1L, class = "data.frame")
x=ggplot(mydata) +
  aes(x=colnames(mydata)[3:13],y=as.numeric(mydata[1,3:13]),fill=sign(as.numeric(mydata[1,3:13]))) +
  geom_bar(stat='identity') + guides(fill=F)
print(x)

1 个解决方案

#1


18  

The way you structure your data is not how it should be in ggplot2:

构建数据的方式不是ggplot2中的方式:

require(reshape)
mydata2 = melt(mydata)

Basic barplot:

基本条形图:

ggplot(mydata2, aes(x = variable, y = value)) + geom_bar()

按标志在ggplot2中设置特定填充颜色

The trick now is to add an additional variable which specifies if the value is negative or postive:

现在的诀窍是添加一个额外的变量,指定值是负数还是正数:

mydata2[["sign"]] = ifelse(mydata2[["value"]] >= 0, "positive", "negative")

..and use that in the call to ggplot2 (combined with scale_fill_* for the colors):

..并在调用ggplot2时使用它(与scale_fill_ *结合使用颜色):

ggplot(mydata2, aes(x = variable, y = value, fill = sign)) + geom_bar() + 
  scale_fill_manual(values = c("positive" = "darkblue", "negative" = "red"))

按标志在ggplot2中设置特定填充颜色

#1


18  

The way you structure your data is not how it should be in ggplot2:

构建数据的方式不是ggplot2中的方式:

require(reshape)
mydata2 = melt(mydata)

Basic barplot:

基本条形图:

ggplot(mydata2, aes(x = variable, y = value)) + geom_bar()

按标志在ggplot2中设置特定填充颜色

The trick now is to add an additional variable which specifies if the value is negative or postive:

现在的诀窍是添加一个额外的变量,指定值是负数还是正数:

mydata2[["sign"]] = ifelse(mydata2[["value"]] >= 0, "positive", "negative")

..and use that in the call to ggplot2 (combined with scale_fill_* for the colors):

..并在调用ggplot2时使用它(与scale_fill_ *结合使用颜色):

ggplot(mydata2, aes(x = variable, y = value, fill = sign)) + geom_bar() + 
  scale_fill_manual(values = c("positive" = "darkblue", "negative" = "red"))

按标志在ggplot2中设置特定填充颜色