python pandas合并数据透视表

时间:2017-02-06 23:04:06

标签: python pandas merge pivot

我创建了9个数据透视表:

它们看起来都像这样

          2015
NR_V    
  0    20.000000
  1    20.405677
  2    35.982625
  3    50.475167
  4    61.578472

我想通过NR_V合并它们,就像我合并普通表一样,但我认为空行将它抛弃。

我试过这个

dfs = [p_2009, p_2010, p_2011, p_2012, p_2013, p_2014, p_2015 ]
merge = partial(pd.merge, on=['NR_V'], how='outer')

result = dfs[0]
     for df in dfs[1:]:
     result = merge(result, df)

但我收到错误“KeyError:'NR_V'”。

1 个答案:

答案 0 :(得分:3)

尝试使用pd.concat

dfs = [p_2009, p_2010, p_2011, p_2012, p_2013, p_2014, p_2015 ]
pd.concat(dfs, axis=1)

enter image description here

对评论的回复
如果你想摆脱空白空间

pd.concat(dfs, axis=1).reset_index()