Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
133 views
in Technique[技术] by (71.8m points)

python - Merge dataframes in a dictionary

Say I have an dictionary of dataframes:

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

And I want to merge them all into one like this:

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

I can do it manually as follows:

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

But is there a way to automatically zip through the dictionary and merge? Any help is appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can just pass the dict direct and access the values attribute to concat:

In [233]:

d
Out[233]:
{'df1':     name         color    type
 0  Apple        Yellow   Fruit, 'df2':     name         color    type
 0  Banana       Red      Fruit, 'df3':     name         color    type
 0  Chocolate    Brown    Sweet}
In [234]:

pd.concat(d.values(), ignore_index=True)
Out[234]:
    name         color    type
0  Banana       Red      Fruit
1  Apple        Yellow   Fruit
2  Chocolate    Brown    Sweet

This assumes that you are just looking to concatenate all the dfs, if you are going to merge then you need to explain what the merge criteria is


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...