R中的堆积条形图

乔斯林·西达莫尼泽

所以我正在尝试制作一个堆积条形图。这是图中需要的所有数据。我想让 ae 在 fj 旁边。我也试图让 y 轴合理。出于某种原因,它放的是数字而不是限制。我可能完全错了。我看过

data<- rbind(c(4655, 4212, 3838, 3583, 3124, 3078, 1411, 2589, 2524, 2429),
         c(2826, 2589, 2557, 2713, 2497, 1, 2, 66, 1757, 1822))

a <- cbind(data[, 1], 1, c("50-60", "40-49"))
b <- cbind(data[, 2], 2, c("50-60", "40-49"))
c <- cbind(data[, 3], 3, c("50-60", "40-49"))
d <- cbind(data[, 4], 4, c("50-60", "40-49"))
e <- cbind(data[, 5], 5, c("50-60", "40-49"))
f <- cbind(data[, 6], 1, c("50-60", "40-49"))
g <- cbind(data[, 7], 2, c("50-60", "40-49"))
h <- cbind(data[, 8], 3, c("50-60", "40-49")) 
i <- cbind(data[, 9], 4, c("50-60", "40-49"))
j <- cbind(data[, 10], 5, c("50-60", "40-49"))

data  <- as.data.frame(rbind(a, b, c, d, e, f, g, h, i, j))
colnames(data) <-c("Number", "Year", "Age")
data$Year      <- factor(data$Year, labels = c("FY13", 
                         "FY14","FY15","FY16","FY17"))

library(ggplot2)

ggplot(data = data, aes(x = data$Year, y = Number, fill = Age)) + 
       geom_bar(stat = "identity")

我可能完全错了。我看了又看,但找不到其他东西来帮助我。

埃米利曼5

听起来您不希望将年份、年龄组合并...所以我创建了另一个变量以将它们分开,然后使用facet_grid

data <- data.frame(as.vector(data), rep(rep(1:5, each=2),2), c("50-60","40-49"), rep(c("Grp1","Grp2"), each=10))

#data  <- as.data.frame(rbind(a, b, c, d, e, f, g, h, i, j))
colnames(data) <-c("Number", "Year", "Age", "Grp")
data$Year      <- factor(data$Year, labels = c("FY13", 
                                               "FY14","FY15","FY16","FY17"))

library(ggplot2)

ggplot(data = data, aes(x = Grp, y = Number, fill = Age)) + facet_grid(~Year) + 
  geom_bar(stat = "identity")

在此处输入图片说明

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章