代码之家  ›  专栏  ›  技术社区  ›  Nishant

如何使用ggplot对条形图中的正负条进行颜色编码

  •  6
  • Nishant  · 技术社区  · 7 年前

    我有以下数据:

    df
        rowname   repo
    1   revrepo  0.888
    2  bankrate  0.402
    3       CRR  0.250
    4  Callrate  0.723
    5       WPI  0.049
    6       GDP -0.318
    7       FED  0.110
    8     width  0.209
    9       nse  0.059
    10      usd  0.185
    

    我正在绘制条形图,如下所示:

    df %>% mutate(rowname = factor(rowname, levels = rowname[order(repo)])) %>%
    ggplot(aes(x = rowname, y = repo)) +
    geom_bar(stat = "identity") +
    ylab("Correlation with repo") +
    xlab("Independent Variable")
    

    我得到以下曲线图: ggplot bar plot

    我想把负栏涂成红色,所有正栏涂成灰色。

    1 回复  |  直到 7 年前
        1
  •  2
  •   cdutra    4 年前

    撰写Andrey Kolyadin评论作为一种解决方案,使其不再作为一个未回答的问题出现:

    geom_bar(aes(fill = repo < 0), stat = "identity") + scale_fill_manual(guide = FALSE, breaks = c(TRUE, FALSE), values=c("gray", "red"))