首页 > 解决方案 > 基于R中的列绘制堆积条

问题描述

假设我有以下数据框:

x = c(10,11,12,13)
x1 = c(0.50,0.55,0.58,0.62)
df <- data.frame(debt= c(0,1,2,3), x = x, x1 = x1, x2 = x-x1)

我如何绘制如下图?

在此处输入图像描述

标签: rggplot2stacked-chart

解决方案


像这样的例子:

library(ggplot2)
df2 <- reshape2::melt(df, id.vars = c("debt","x"))

ggplot(df2, aes(x = debt)) +
  geom_col(aes(y = value, fill = factor(variable, levels = c("x2","x1"))), width = 0.5) +
  geom_line(aes(y = x, colour = "steelblue"), size = 3) +
  scale_fill_manual(values = c("x1" = "darkorange", "x2" = "grey50"), name = "") +
  scale_colour_identity(guide = "legend", name = "", labels = "x") +
  scale_y_continuous(name = "x", expand = c(0,0,0.2,0)) +
  theme_minimal()

在此处输入图像描述


推荐阅读