在r中创建堆积条形图

时间:2017-05-14 12:58:18

标签: r bar-chart stacked-area-chart

我真的很想在R中创建一个堆积条形图。我是一个初学者,所以即使查看其他示例我也无法找到正确的解决方案。 以下是我的数据:

         gdp_2      def_2      pcom_2      ff_2       nbr_2        tr_2    unemp_2
[1,] 0.02938106 0.01009107 0.014915879 0.9456120 0.000000000 0.000000000 0.00000000
[2,] 0.04824422 0.02513049 0.016115796 0.8303659 0.002320698 0.001255257 0.07656760
[3,] 0.06532489 0.05206917 0.011290059 0.7623530 0.002604175 0.008032572 0.09832613
[4,] 0.07485907 0.07576441 0.009215843 0.7064166 0.003207812 0.008397380 0.12213887
[5,] 0.07894689 0.10131343 0.007674296 0.6635104 0.003415185 0.009705830 0.13543392

左侧的数字1到5表示时间范围。所以我想为每个时间范围堆叠变量gdp_2,def_2,pcom_2,ff_2,nbr_2,tr_2和unemp_2的所有值。

这应该看起来像stacked bar chart

当然,拥有一个不错的传奇会很高兴,但目前我甚至不知道如何创建堆积条形图。 顺便说一下,对于那些对这个主题感兴趣的人:这是美国经济变量的预测误差方差分解。

我已经提前感谢你了! 最好, 波多黎各

1 个答案:

答案 0 :(得分:2)

使用ggplot2dplyrtidyrtidyverse的所有部分)......

library(tidyverse)

chart <- df %>% mutate(year=1:n()) %>% #add year as a column to your df
  gather(key=colname,value=value,-year) %>% #convert to long format
  ggplot(aes(x=year,y=value,fill=colname)) + #send to ggplot
  geom_bar(stat="identity",position="stack") #draw stacked bar

print(chart)

enter image description here