Creating a vertical color gradient for a geom_bar plot

后端 未结 2 477
半阙折子戏
半阙折子戏 2021-01-12 12:33

I have searched and searched, but I cant seem to find an elegant way of doing this!

I have a dataset Data consisting of Data$x (dates) and

2条回答
  •  孤独总比滥情好
    2021-01-12 13:15

    Doesn't exist as far as I know, but you can manipulate your data to produce it.

    library(ggplot2)
    
    df = data.frame(x=c(1:10),y=runif(10))
    
    prepGradient <- function(x,y,spacing=max(y)/100){
      stopifnot(length(x)==length(y))
      df <- data.frame(x=x,y=y)
      newDf = data.frame(x=NULL,y=NULL,z=NULL)
      for (r in 1:nrow(df)){
        n <- floor(df[r,"y"]/spacing)
        for (s in c(1:n)){
          tmp <- data.frame(x=df[r,"x"],y=spacing,z=s*spacing)
          newDf <- rbind(newDf,tmp)
        }
        tmp <- data.frame(x=df[r,"x"],y=df[r,"y"]%%spacing,z=df[r,"y"])
        newDf <- rbind(newDf,tmp)
      }
      return(newDf)
    }
    
    df2 <- prepGradient(df$x,df$y)
    
    ggplot(df2,aes(x=x,y=y,fill=z)) + 
      geom_bar(stat="identity") + 
      scale_fill_gradient2(low="red", high="green", mid="yellow",midpoint=median(df$y))+
      ggtitle('Vertical Gradient Example') +
      theme_minimal()
    

提交回复
热议问题