合并字典中的数据帧

时间:2015-05-14 09:39:01

标签: python pandas

说我有一个数据帧字典:

  {'df1': name         color    type
          Apple        Yellow   Fruit,
   'df2': name         color    type
          Banana       Red      Fruit,
   'df3': name         color    type
          Chocolate    Brown    Sweet
    ......}

我想将它们合并为一个像这样:

  name         color    type
  Apple        Red      Fruit 
  Banana       Yellow   Fruit
  Chocolate    Brown    Sweet

我可以按照以下方式手动完成:

  merge1=pd.merge('df1','df2')
  merge2=pd.merge('merge1','df3')
  ...

但有没有办法自动压缩字典并合并? 任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:20)

您可以直接传递dict并访问<editor_obj>.getInt("scroll_position",0); 属性concat

listview.setSelection(<editor_obj>.getInt("scroll_position",0));

这假设您只是想要连接所有dfs,如果要合并,那么您需要解释合并标准是什么