如何在堆积的条形图中绘制两列

时间:2019-11-26 18:53:39

标签: r ggplot2 graph

在以下方面,我将感谢您的帮助:我正在尝试构建一个堆积的barplot。填充是业务(新业务和续签)的划分,Y轴是新业务/续签的业务量,X表示月份。在我的数据中,我有两年的历史,所以我想每月有两列堆积的列,一列为n-1年,另一列为n年。但是,我不知道该如何做最后一步...

为澄清起见,请在下面查看数据图片,到目前为止的图表以及目标图。

这是代码:

ggplot(BUSINESS, aes(fill=Business, y=GWP_mio, x=Date)) + 
  geom_bar(position="stack", stat="identity") +
  scale_fill_manual(values = c("#009E73","Darkblue")) +
  scale_y_continuous(breaks=seq(0,18000000,1000000), labels = scales::comma_format(scale = 1/1000000, 
  accuracy = .1), limits = c(0,18000000)) + 
  theme_ipsum() +
  ggtitle('GWP development') +
  theme(plot.title = element_text(hjust=0.5, size=14, family="Calibri", face="bold"),
        legend.title = element_text(size=11, family="Calibri", face="bold"),
        axis.title.x = element_text(hjust=1, size=11, family="Calibri", face="bold"),
        axis.text.x = element_text(angle=90, hjust=1, size=11, family="Calibri"),
        axis.title.y = element_text(angle=0, hjust=1, size=10, family="Calibri", face="bold"))

任何帮助将不胜感激。

enter image description here [enter image description here 2 [enter image description here] 3

1 个答案:

答案 0 :(得分:1)

您要的是position= 'dodge'position= 'stack'。我实际上建议使用刻面:

数据

library(data.table)
library(ggplot2)
N <- 24
dat <- data.table(
  date= rep(seq.Date(as.Date('2017-01-01'), as.Date('2018-12-01'), '1 month'), each= 2)
  , new= rpois(n= 2 * N, lambda= 5)
  , renew= rpois(n= 2 * N, lambda= 4)
)

dat[,year := data.table::year(date)]
dat[,month:= data.table::month(date)]
dat <- melt(dat, id.vars= c("date", "year", "month"), variable.name= 'business_type', value.name= 'units')

Facet

对于观看者来说,这将变得更加容易。

ggplot(dat, aes(x= month, y= units, fill= factor(year))) +
  geom_bar(position= 'dodge', stat='identity') + facet_grid(business_type ~ .) +
  theme(axis.text.x= element_text(angle= 90))

解决方案

但这不是您要的。因此,让我们做些骇人听闻的事情。您必须弄乱颜色/填充才能获得所需的颜色。但是在这里,我们为总数添加了第一层,然后为新的添加了第二层

N <- 24
dat <- data.table(
  date= rep(seq.Date(as.Date('2017-01-01'), as.Date('2018-12-01'), '1 month'), each= 2)
  , new= rpois(n= 2 * N, lambda= 5)
  , renew= rpois(n= 2 * N, lambda= 4)
)
dat[,year := data.table::year(date)]
dat[,month:= data.table::month(date)]
dat[, total := new + renew]

ggplot(dat, aes(x= month, y= total, fill= factor(year))) + 
  geom_bar(stat= 'identity', position= 'dodge', ) +
  geom_bar(data= dat, aes(x= month, y= new, fill= "black", colour= factor(year)), stat= 'identity', position= 'dodge') +
  scale_color_brewer(palette = "Dark2")

enter image description here

enter image description here