我是新手使用R和ggplot2,我看过像plot stacked bar plot in R这样的帖子,但它们不是我想要的。
我有下一个数据
Formación En consolidación Consolidado
Ene-Abr 2009 Meta 40 30 30
Realizado 35 45 20
May-Ago 2009 Meta 35 35 30
Realizado 34 45 20
Sep-Dic 2009 Meta 30 30 40
Realizado 20 40 20
我需要下一个叠加的条形图,就像下一个链接中的条形图一样 http://imageshack.us/photo/my-images/90/efk6.png/
答案 0 :(得分:0)
首先,需要填写包含日期的列,没有空行,日期也应包括年份。我不知道你是如何得到你的数据的,所以在计算上这样做可能需要一些修改,但它应该不那么难。在这种情况下我手动完成了:
> df
Periodo Grupo Formacion En.consolidacion Consolidado
1 Ene-Abr.2009 Meta 40 30 30
2 Ene-Abr.2009 Realizado 35 45 20
3 May-Ago.2009 Meta 35 35 30
4 May-Ago.2009 Realizado 34 45 20
5 Sep-Dic.2009 Meta 30 30 40
6 Sep-Dic.2009 Realizado 20 40 20
(而不是空格,我在变量的名称中使用了点。)之后,使用melt()
包中的plyr
和facet_wrap
很容易:
library(ggplot2)
library(plyr)
m=melt(df)
ggplot(m,aes(x=factor(Grupo),y=value,fill=factor(variable))) +
geom_bar(position="fill", stat="identity") +
scale_y_continuous(labels = percent,
breaks=c(0.2,0.4,0.6,0.8,1)) + # you can set the breaks to whatever you want
facet_wrap(~ Periodo)
这是你想要的吗?
以下是您的(已编辑)数据:
df = structure(list(Periodo = structure(c(1L, 1L, 2L, 2L, 3L, 3L), .Label = c("Ene-Abr.2009",
"May-Ago.2009", "Sep-Dic.2009"), class = "factor"), Grupo = structure(c(1L,
2L, 1L, 2L, 1L, 2L), .Label = c("Meta", "Realizado"), class = "factor"),
Formacion = c(40L, 35L, 35L, 34L, 30L, 20L), En.consolidacion = c(30L,
45L, 35L, 45L, 30L, 40L), Consolidado = c(30L, 20L, 30L,
20L, 40L, 20L)), .Names = c("Periodo", "Grupo", "Formacion",
"En.consolidacion", "Consolidado"), class = "data.frame", row.names = c(NA,
-6L))